2013年4月29日

无头单链表反转

摘要: 1 #include <iostream> 2 3 using namespace std; 4 5 struct node 6 { 7 int data; 8 node *next; 9 }; 10 11 12 node *list_create(void) 13 { 14 node *head = NULL; 15 node **curr... 阅读全文

posted @ 2013-04-29 09:24 阿加 阅读(215) 评论(0) 推荐(0) 编辑

导航