c语言数据结构(链表的插入和删除)

日期:2010-06-04 23:33:30 人气:2

c语言数据结构(链表的插入和删除)

下面是我的源代码,你看看,应该可以帮上你的 :-) /* * singleLinkedList.cc * * Created on: 2010-6-1 * Author: LiuFeng * */ #include #include #include typedef struct node { int data; node* next; } node; node* search_node(node* he
    A+
热门评论