/* (8)生成一个长度为21的数组,依次存入1到21;建立一个长度为21的单向链表,
将上述数组中的数字依次存入链表每个结点中;将上述链表变为单向封闭(循环)链表;
从头结点开始数,将第17个结点删除,将它的下一个结点作为
新的头结点;重复上述过程,直到该链表中只剩一个结点,显示该结点中存入的数字。 */
/*本题的实质仍然是一个约瑟夫环问题(传说中的猴子选大王)*/
/*输出结果: 17 13 10 8 7 9 12 16 21 5 19 11 4 6 18 14 20 1 3 15 2 */
/*程序:*************************爱X的味道*****************************/
#include<stdio.h>
#include<stdlib.h>
typedef struct Node
{
int data;
struct Node *next;
}Node,*Linklist;
/*创建单链表 尾插法*/
void CreateLinklist(Linklist *L)
{
Linklist p=*L,pre;
*L=(Linklist)malloc(sizeof(Node));
p=*L;
p->data=1;
p->next=NULL;
for(int i=1;i<21;i++)
{
pre=(Linklist)malloc(sizeof(Node));
pre->data=i+1;
pre->next=NULL;
p->next=pre;
p=p->next;
}
p->next=*L;
}
/*简单的约瑟夫环算法*/
void Josephus(Linklist L)
{
Linklist p=L,pre=L,s;
int count=1;
while(pre->next!=L)
pre=pre->next;
printf("过程结束后的结果是:\n\n");
while(pre->next!=pre)
{
pre=p;
p=p->next;
count++;
if(count%17==0)
{
printf(" %d ",p->data);
s=p;
pre->next=p->next;
p=p->next;
count++;
free(s);
}
}
printf(" %d\n\n ",p->data);
}
int main()
{
int array[21],i;
for(i=0;i<21;i++)
array[i]=i+1;
Linklist L;
CreateLinklist(&L);
Josephus(L);
system("pause");
return 0;
}
08年以前华中科大机试第8道题目(约瑟夫环问题(传说中的猴子选大王))
最新推荐文章于 2020-11-03 19:30:46 发布