数据结构与算法 —— 单向链表的逆转
2021-06-16 06:06
标签:图片 eve alt nbsp return color 数据结构 soscw inf 数据结构与算法 —— 单向链表的逆转 标签:图片 eve alt nbsp return color 数据结构 soscw inf 原文地址:https://www.cnblogs.com/FengZeng666/p/9726843.html 1 List Reverse(List L)
2 {
3 Node *new_head, *old_head, temp;
4 new_head = NULL;
5 old_head = L;
6 while(old_head)
7 {
8 temp = old_head->next;
9 old_head->next = new_head;
10 new_head = old_head;
11 old_head = temp;
12 }
13
14 L = new_head;
15 return L;
16 }
上一篇:Python08,集合
下一篇:json to xml
文章标题:数据结构与算法 —— 单向链表的逆转
文章链接:http://soscw.com/index.php/essay/94471.html