C语言
文章平均质量分 66
Study_more
这个作者很懒,什么都没留下…
展开
-
C语言链表
#include #include #define null 0 //--------定义节点--------- typedef struct List { int data; struct List* next; }List; //----------构造链表---------- List* InitList(int n) { int i; List *h原创 2012-07-06 16:35:28 · 751 阅读 · 0 评论 -
单链表
#include #include typedef struct Student { int data; struct Student *next; }Node,*Link; void Display(Link L) { Node *p; p=L->next; printf("The result is:\n"); while(p) { printf原创 2012-07-23 11:09:19 · 1022 阅读 · 0 评论