论坛交流
首页办公自动化| 网页制作| 平面设计| 动画制作| 数据库开发| 程序设计| 全部视频教程
应用视频: Windows | Word2007 | Excel2007 | PowerPoint2007 | Dreamweaver 8 | Fireworks 8 | Flash 8 | Photoshop cs | CorelDraw 12
编程视频: C语言视频教程 | HTML | Div+Css布局 | Javascript | Access数据库 | Asp | Sql Server数据库Asp.net  | Flash AS
当前位置 > 文字教程 > C语言程序设计教程
Tag:新手,函数,指针,数据类型,对象,Turbo,入门,运算符,数组,结构,二级,,tc,游戏,试题,问答,编译,视频教程

C语言实例教程_约瑟夫环循环链表

文章类别:C语言程序设计 | 发表日期:2011-4-6 9:35:29

C语言实例教程_约瑟夫环循环链表

#include <malloc.h> 
#define LEN sizeof(struct shu) 
#define NULL 0 
struct shu 
{int num; 
 struct shu *next; 
 }; 
 main() 
 {struct shu *p,*q,*head; 
 int i,a,b; 
 head=NULL; 
 p=q=(struct shu *)malloc(LEN); 
 scanf("%d",&p->num); 
 while(p->num!=NULL) 
 {if(head==NULL)head=p; 
 else {q->next=p;q=p;} 
 p=(struct shu *)malloc(LEN); 
 scanf("%d",&p->num); 
 } 
 q->next=head; 
 scanf("\n%d%d\n",&a,&b); 
 while(q->num!=a) 
 q=q->next; 
 p=q->next; 
 while(p!=q) 
 {for(i=1;i<=b-2;i++) 
 {q=p;p=p->next;} 
 q->next=p->next; 
 printf("%d,",p->num); 
 q=q->next; 
 p=q->next; 
 } 
 printf("%d",q->num); 
}

视频教程列表
文章教程搜索
 
C语言程序设计推荐教程
C语言程序设计热门教程
看全部视频教程
购买方式/价格
购买视频教程: 咨询客服
tel:15972130058