编程随想录
CSDN拆迁户 @2014-04-07

导航

 

2010年4月6日

摘要: http://www.aowe.net/n6296c6.aspxhttp://blog.sina.com.cn/s/blog_622119290100g2xo.html比较全:链表题:一个链表的结点结构struct Node{int data ;Node *next ;};typedef struct Node Node ; (1)已知链表的头结点head,写一个函数把这个链表逆序 ( Intel) Node * ReverseList(Node *head) //链表逆序{if ( head == NULL || head->next == NULL )return head;Node 阅读全文
posted @ 2010-04-06 16:33 dos5gw 阅读(184) 评论(0) 推荐(0)