会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
Sinbad
http://hi.baidu.com/酷我一代/home 欢迎
博客园
::
首页
::
新随笔
::
联系
::
订阅
::
管理
公告
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)
编辑