2010年11月28日
摘要: 链表是C语言编程中常用的数据结构,比如我们要建一个整数链表,一般可能这么定义: view sourceprint?1struct int_node {2int val;3struct int_node *next;4}; 为了实现链表的插入、删除、遍历等功能,另外要再实现一系列函数,比如: view sourceprint?01void insert_node(struct int_node ... 阅读全文
posted @ 2010-11-28 22:44 kuangxiangjie 阅读(408) 评论(0) 推荐(0) 编辑