1 #include <stdio.h>
2 #include <stdlib.h>
3 #include <time.h>
4
5
6 #define Test(arg) if(arg == NULL){\
7 printf("Invalid arg!\n");\ 8 return -1;\ 9 } 10
11 /*單鏈表的實現能夠各有不一樣,只要該實現,符合鏈表的定義便可。 12 *單鏈表最重要的數據結構是元素結點, 13 *最重要的操做是插入結點,刪除結點和遍歷。 14 *其它的操做基本上是這3個操做的組合,依據具體的要求而定。 15 */
16
17 /******************************************* 18 *單向鏈表結點信息 19 * 20 *數據域: 能夠是普通類型,也能夠是封裝類型 21 *指針域: next指針 22 * 23 *********************************************/
24 typedef struct node 25 { 26 int num; //數據域
27 struct node *next; //指針域
28 }NODE; 29
30 /******************************************* 31 *單向鏈表信息 32 * 33 *鏈表的屬性信息: 鏈表的做用描述,鏈表當前節點個數等等 34 *指針信息: 通常必須有表頭指針,也能夠有尾結點指針 35 * 36 *********************************************/
37 typedef struct list_info 38 { 39 int max; //結點個數
40 NODE *head; //頭結點指針
41 NODE *tail; //尾結點指針
42 }LIST_INFO; 43
44
45
46
47
48 /******************************************* 49 *Des: 單向鏈表初始化操做,即建立鏈表 50 *Ret: 成功返回0,失敗返回-1 51 *********************************************/
52 static NODE *__Create_Node__(int num) 53 { 54 NODE *new_node = (NODE *)malloc(sizeof(NODE)); 55 if(NULL == new_node) 56 { 57 perror("Create Node"); 58 return NULL; 59 } 60
61 new_node->next = NULL; 62 new_node->num = num; 63
64 return new_node; 65 } 66
67 /******************************************* 68 *Des: 單向鏈表初始化操做,即建立鏈表 69 *Ret: 成功返回0,失敗返回-1 70 *********************************************/
71 int Init_Link(LIST_INFO **plist) 72 { 73 Test(plist);//函數入口檢測
74
75 *plist = (LIST_INFO *)malloc(sizeof(LIST_INFO)); 76 if(NULL == *plist) 77 { 78 perror("Create List"); 79 return -1; 80 } 81
82 (*plist)->head = NULL; 83 (*plist)->tail = NULL; 84 (*plist)->max = 0; 85
86 return 0; 87 } 88
89
90 /******************************************* 91 *Des: 判斷鏈表是否爲空 92 *Ret: 真空返回1,假空返回0 93 *********************************************/
94 int IS_Empty_Link(LIST_INFO *plist) 95 { 96 return (NULL == plist->head) ? 1 : 0; 97 } 98
99 /******************************************* 100 *Des: 清空鏈表 101 *Ret: 成功返回0, 失敗返回-1 102 *********************************************/
103 int Empty_Link(LIST_INFO *plist) 104 { 105 Test(plist);//函數入口檢測
106
107 NODE *fnode, *pnode = plist->head; 108 if(IS_Empty_Link(plist)) 109 { 110 printf("The list is already empty!\n"); 111 return -1; 112 } 113
114 while(NULL != pnode) 115 { 116 fnode = pnode; 117 pnode = pnode->next; 118 free(fnode); 119 } 120
121 plist->head = plist->tail = NULL; 122 plist->max = 0; 123
124 return 0; 125 } 126
127 /******************************************* 128 *Des: 插入結點到表頭(與在表尾操做相似) 129 *Ret: 成功返回0,失敗返回-1 130 *********************************************/
131 int Insert_to_Head(LIST_INFO *plist, int num) 132 { 133 Test(plist);//函數入口檢測
134
135 NODE *new_node = __Create_Node__(num); 136 if(NULL == new_node) 137 return -1; 138
139 if(IS_Empty_Link(plist)) 140 { 141 plist->head = plist->tail = new_node; 142 } 143 else
144 { 145 new_node->next = plist->head; 146 plist->head = new_node; 147 } 148
149 plist->max++; 150
151 return 0; 152 } 153
154
155 /******************************************* 156 *Des: 刪除數據域爲num的結點 157 *Ret: 成功返回0,失敗返回-1 158 *********************************************/
159 int Delete_Node_Num(LIST_INFO *plist, int num) 160 { 161 Test(plist);//函數入口檢測
162
163 if(IS_Empty_Link(plist)) 164 { 165 printf("The list is empty!\n"); 166 return -1; 167 } 168
169 NODE *fnode, *tmpnode = NULL, *pnode = plist->head;
//第一次寫的時候漏掉此處判斷,node
//當只有一個節點便是頭結點又是尾結點時 數據結構
if(plist->head->num == num && plist->max == 0) 函數
{ spa
fnode = plist->head;指針
plist->head = plist->tail = NULL; code
free(fnode);blog
plist->max= 0;it
return 0; io
}class
170 while(NULL != pnode)//查找該節點
171 { 172 if(pnode->num == num) 173 break; 174 tmpnode = pnode; 175 pnode = pnode->next; 176 } 177 if(pnode == NULL)//沒有找到
178 { 179 printf("Have no such Node!\n"); 180 return -1; 181 } 182 else if(NULL == tmpnode)//是頭結點
183 { 184 fnode = plist->head; 185 plist->head = fnode->next; 186 } 187 else if(pnode == plist->tail)//是尾結點
188 { 189 fnode = plist->tail; 190 plist->tail = tmpnode; 191 plist->tail->next = NULL; 192 } 193 else
194 { 195 fnode = pnode; 196 tmpnode->next = fnode->next; 197 } 198 free(fnode); 199
200 return 0; 201
202 } 203
204 /******************************************* 205 *Des: 銷燬鏈表 206 *Ret: 成功返回0,失敗返回-1 207 *********************************************/
208 int Destory_Link(LIST_INFO **plist)// plist1 = &plist
209 { //*plist1 <==> plist;
210 Test(plist);//函數入口檢測
211
212 Empty_Link(*plist);//清空鏈表
213
214 free(*plist); 215
216 *plist = NULL; 217
218 return 0; 219 } 220
221
222 /******************************************* 223 *Des: 遍歷鏈表 224 *Ret: 成功返回0,失敗返回-1 225 *********************************************/
226 int Traverse_Link(LIST_INFO *plist) 227 { 228 Test(plist);//函數入口檢測
229
230 NODE *pnode = plist->head; 231
232 if(IS_Empty_Link(plist)) 233 { 234 printf("The list is empty!\n"); 235 return -1; 236 } 237
238 printf("The count of node: %d\n", plist->max); 239 while(NULL != pnode) 240 { 241 printf("%-5d", pnode->num); 242
243 pnode = pnode->next; 244 } 245 printf("\n\n"); 246 return 0; 247 } 248
249
250 /******************************************* 251 *Des: 順序表插入(從小到大) 252 *Ret: 成功返回0,失敗返回-1 253 *********************************************/
254 int Insert_Order(LIST_INFO *plist, int num) 255 { 256 Test(plist); //函數入口檢測
257
258 NODE *tmpnode = NULL, *pnode =NULL; 259
260 //建立新結點
261 NODE *new_node = __Create_Node__(num); 262 if(NULL == new_node) 263 { 264 return -1; 265 } 266
267 //鏈表爲空
268 if(IS_Empty_Link(plist)) 269 plist->head = plist->tail = new_node; 270
271 //若是第一個結點比待插入的結點數據域大
272 else if(plist->head->num >= new_node->num) 273 { 274 new_node->next = plist->head; 275 plist->head = new_node; 276 } 277 else
278 { 279 tmpnode = plist->head; 280 pnode = plist->head->next; 281 while(NULL != pnode) 282 { 283 if(pnode->num >= new_node->num) 284 break; 285 tmpnode = pnode; 286 pnode = pnode->next; 287 } 288 new_node->next = tmpnode->next; 289 tmpnode->next = new_node; 290 if(pnode == NULL) 291 plist->tail = new_node; 292 } 293 plist->max++; 294
295 return 0; 296 }