摘要: C代码: 单链表逆置/* Author : glq2000[glq2000@126.com http://hi.baidu.com/bmrs] Date : Wen, 2010-7-21 功能 : 实现单链表的逆置等 */ #include <stdio.h> #include <string.h> #include <stdlib.h> typedef struct _Node { int value; struct _Node *next; }Node, *PNode; PNode BuildLink(int n); //构造一个节点数目为n个的... 阅读全文
posted @ 2011-10-15 10:07 樱色布 阅读(369) 评论(0) 推荐(1) 编辑