2012年9月25日
摘要: /** auther: Try86* time:2012/9/25 13:14* dec:单链表:递归建立,递归反转,递归打印*/#include <stdio.h>#include <stdlib.h>#include <assert.h>typedef struct list //单链表节点结构{ int data; struct list *p_next;}List;int main(void){ int num = 0; //统计单链表的节点数 List *head = NULL; ... 阅读全文
posted @ 2012-09-25 13:18 Try86 阅读(1134) 评论(0) 推荐(0) 编辑