2010年12月21日
摘要: 偶尔看到这么个单链表的倒序,觉得写的算法很好(可能我很少去研究算法的原因吧),不画图发现自己还真不知道怎么写的: 单链表的倒序: struct student *reverse(struct student *head){struct student *p1,*p2,*p3;p2=head;p3=head->next;do{ p1=p2;p2=p3;p3=p2->next;p2->ne... 阅读全文
posted @ 2010-12-21 19:02 sinbad_li 阅读(339) 评论(0) 推荐(0) 编辑