摘要: 1 //逆转链表http://blog.163.com/lichunliang1988116@126/blog/static/26599443201282083655446/ 2 #include 3 #include 4 typedef struct Node 5 { 6 int data; 7 Node *next; 8 }*Linklist,ListNode; 9 void initLink(Linklist *head) 10 { 11 12 Node *node=(Node *)malloc(sizeof(Node)); 13 n... 阅读全文
posted @ 2013-10-09 15:08 hansongjiang8 阅读(266) 评论(0) 推荐(0) 编辑