数据结构
文章平均质量分 66
yuboyanyuboyan
河北科技大学
展开
-
用数组表示指针
#include #include #define MAXSIZE 100#define NULL 0struct list{int data;int cur;}*head,SLinkList[MAXSIZE];void main(){struct list *pointer;int midnum,a,position;clrscr();head=NULL;SLinkList[0].data=NU原创 2009-09-30 19:14:00 · 296 阅读 · 0 评论 -
构建循环链表:数据结构,看一哥们发帖看到的
编译环境为TC2.0#include #include #include struct node { int data; struct node *pnext; }; void looplink(struct node *head,int n) { int i; struct node *p; struct node *q; for(i=0;i { if(i==0) { p=(struc原创 2009-09-28 15:39:00 · 280 阅读 · 0 评论