资源描述:
《数据结构 c语言 39个小程序》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、file:///L
2、/C语言/其他/重要程序/小程序/_joseph环.txt数据结构课程设计_joseph环/*Name:joseph环Author:wujilinDescription:课程设计joseph环就是一个循环链表的运用Date:11-07-0620:11Copyright:wujilin*/#include#includetypedefstructNode{intdata;intpassword;structNode*next;}Node,*LinkList;voidCreatLinkList(L
3、inkList*L,intn){Node*p,*q;inti;(*L)=(LinkList)malloc(sizeof(Node));if((*L)==NULL){printf("memoryallocationfailed,goodbye");exit(1);}p=(*L);printf("请输入第1个元素的密码:");scanf("%d",&(p->password));p->data=1;for(i=2;i<=n;i++){q=(LinkList)malloc(sizeof(Node));if(q==NULL){file:///L
4、/C语言/其
5、他/重要程序/小程序/_joseph环.txt(第1/3页)[2011-8-138:44:33]file:///L
6、/C语言/其他/重要程序/小程序/_joseph环.txtprintf("memoryallocationfailed,goodbye");exit(1);}printf("请输入第%d个元素的密码:",i);scanf("%d",&(q->password));q->data=i;p->next=q;p=q;}p->next=(*L);}voidOutput(LinkList*L,intm,intn){Node*p,*q;inti
7、=1;p=(*L);printf("输出出对序列:");while(n){while(i!=m){q=p;p=p->next;i++;}printf("%-3d",p->data);m=p->password;q->next=p->next;free(p);p=q->next;i=1;n--;}/////////////////////////////////////////////////////////下面是别人用for循环的其实和我用while循环差不多//但别人在处理删除一个节点的方法以前没看到过值得学习//inti,j;//Node*p,*
8、q;//file:///L
9、/C语言/其他/重要程序/小程序/_joseph环.txt(第2/3页)[2011-8-138:44:33]file:///L
10、/C语言/其他/重要程序/小程序/_joseph环.txt//p=(*L);//for(j=1;j<=n;j++)//{////for(i=1;inext);//m=p->password;//printf("%d",p->data);//p->data=p->next->data;//p->password=p->next->password;//q=p->next;
11、//p->next=p->next->next;//free(q);//}//////////////////////////////////////////////////////printf("");}intmain(void){LinkListL;intn,m;printf("请输入人数:");scanf("%d",&n);getchar();CreatLinkList(&L,n);printf("请输入第一个报号数:");scanf("%d",&m);Output(&L,m,n);system("pause");return0;}file
12、:///L
13、/C语言/其他/重要程序/小程序/_joseph环.txt(第3/3页)[2011-8-138:44:33]file:///L
14、/C语言/其他/重要程序/小程序/_计算器.txtC语言课程设计]计算器代码#include/*DOS接口函数*/#include/*数学函数的定义*/#include/*屏幕操作函数*/#include/*I/O函数*/#include/*库函数*/#include/*变量长度参数表*/#include15、raphics.h>/*图形函数*/#include/*字符串函数*/#include<