-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSingleLinkedList.c
152 lines (133 loc) · 3.31 KB
/
SingleLinkedList.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
/*
* Copyright (c) 2012-~ simon.H
*
* The source code is released for free distribution under the terms of the GNU General Public License
*
*
* Author: Simon Hou
* Created Time: 2012.05.06
* File Name: SingleLinkedList.c
* Description: 实现单向链表的建立,包括头插法,和尾插法,以及链表反转非递归实现
* Input : abd##e##cf##g##
*/
#include <stdio.h>
#include <stdlib.h>
typedef int ElemType;
typedef struct Node
{
ElemType data;
struct Node *next;
}Node,*LinkList;
void InitList(LinkList L)
{
L = (Node*)malloc(sizeof(Node));
if(L == NULL)
printf("申请内存空间失败\n");
L->next = NULL;
}
//创建链表,尾插法
LinkList ListCreateR()
{
LinkList L;
L = (Node*)malloc(sizeof(Node));
L->next = NULL;
Node *rNode = L; //rNode始终指向尾节点,开始时指向头节点
ElemType x;
while(scanf("%d",&x) != EOF)
{
Node *p;
p = (Node*)malloc(sizeof(Node)); //申请新的节点
p->data = x;
rNode->next = p;
rNode = p;
}
rNode->next = NULL; //不要忘记尾结点要指向NULL
return L;
}
//创建链表,头插法
LinkList ListCreateH()
{
// InitList(L);
Node *L;
L = (Node*)malloc(sizeof(Node));
L->next = NULL;
ElemType x;
while(scanf("%d", &x) != EOF)
{
Node *pNode;
pNode = (Node*)malloc(sizeof(Node));
pNode->data = x;
pNode->next = L->next;
L->next = pNode;
}
return L;
}
void printList(LinkList L)
{
Node *temp;
temp = L;
while(temp != NULL)
{
printf("%6d", temp->data);
temp = temp->next;
}
}
///////////////////////////////////////////////////////////////////////
// Reverse a list iteratively
// Input: L - the head of the original list
// Output: the head of the reversed head
///////////////////////////////////////////////////////////////////////
LinkList ListReverse(LinkList L)
{
LinkList ReverseHead = NULL; //新链表的头节点
Node *pNode = L;
Node *pPrev = NULL;
while(pNode != NULL) //遍历到尾节点时停止
{
Node *pNext = pNode->next; //(1)
if(pNext == NULL)
ReverseHead = pNode;
pNode->next = pPrev; //交换反转
pPrev = pNode; //(2)
pNode = pNext; //(3)
}
return ReverseHead; //Return the new head
}
// 另一种实现,该方法额外申请了一个Node,将旧链表后的节点依次链入, 使用头插法构建链表
LinkList ListReverse2(LinkList L)
{
Node *temp;
temp = L;
LinkList nList;
if(L == NULL || (nList = (LinkList)malloc(sizeof(LinkList))) == NULL)
{
return NULL;
}
nList->data = L->data;
nList->next = NULL;
while(L->next != NULL)
{
temp = nList->next; // 先保存新链表后续节点指针
nList->next = L->next; //旧节点插入新节点
L->next = L->next->next; //从旧链表中删除旧节点
nList->next->next = temp; //完整插入新链表中
}
free(L);
return nList;
}
int main()
{
// LinkList L;
LinkList LR;
LinkList revL;
// L = ListCreateH();
LR = ListCreateR();
printf("\nThe number of list is:\n");
//printf("%d\n",L->next->data);
// printList(L);
printList(LR);
printf("\nReverse list:\n");
revL = ListReverse2(LR);
printList(revL);
return 0;
}