摘要:
作者:wwang来源:博客园发布时间: 2010-12-05 15:23阅读: 217 次原文链接全屏阅读 [收藏] 链表是C语言编程中常用的数据结构,比如我们要建一个整数链表,一般可能这么定义:1structint_node {2intval;3structint_node *next;4}; 为了实现链表的插入、删除、遍历等功能,另外要再实现一系列函数,比如:1voidinsert_node(structint_node *head,structint_node *current);2voiddelete_node(structint_node *head,structint_node.. 阅读全文