摘要:
转自博客园,源地址:http://www.cnblogs.com/wwang/archive/2010/11/28/1889281.html链表是C语言编程中常用的数据结构,比如我们要建一个整数链表,一般可能这么定义:view sourceprint?1struct int_node {2 int val;3 struct int_node *next;4};为了实现链表的插入、删除、遍历等功能,另外要再实现一系列函数,比如:view sourceprint?01void insert_node(struct int_node **head, int val);0203void delete_ 阅读全文