数据结构(C语言版)链表的创建,插入,删除实验代码

日期:2013-12-14 12:19:28 人气:1

数据结构(C语言版)链表的创建,插入,删除实验代码

简单写了个 你试哈?#include #include struct Node { int data; Node *next; }; struct Node *head = NULL; struct Node *tail = NULL;void createList(); void displayNode(); void delNode(int node); Node *searchNode(int node);int main() { createList();
    A+
热门评论