摘要:
1 #include <stdio.h> 2 #include <assert.h> 3 #include <malloc.h> 4 5 typedef struct NODE 6 { 7 int data; 8 9 struct NODE *next; 10 }Linklist; 11 12 void Reverse(Linklist *head) 13 { 14 assert (NULL != head); 15 16 Linklist *p1 = NULL; 17 Linklist *p2 = NULL; 18 19 ... 阅读全文