|
马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
下面这段代码是我根据小甲鱼视频中一样打的,可为什么这段代码在vc++中每次运行就弹出中止框,用devc++运行可以,求解释。十分感谢。
//Josephus问题
#include<stdio.h>
#include<stdlib.h>
typedef struct Node *PtrToNode;
struct Node{
int data;
struct Node *next;
};
typedef PtrToNode List;
List CreatList(int N);
List CreatList(int N)//创建单向循环链表
{
List p=(PtrToNode)malloc(sizeof(List));
List head=p;
int i=1;
List s;
if(N!=0)
{
while(i<=N)
{
s=(PtrToNode)malloc(sizeof(List));
s->data=i;
p->next=s;
p=s;
i++;
}
s->next=head->next;
}
else
printf("未知错误!\n");
free(head);
return s->next;
}
int main()
{
int M,N;
printf("请输入M的值:");
scanf("%d",&M);
printf("请输入N的值:");
scanf("%d",&N);
if((M==0)||(N==0))
{
printf("未知错误!\n");
return NULL;
}
List p=CreatList(N);
List Temp;
while(p!=p->next)
{
for(int i=1;i<M-1;i++)
p=p->next;
printf("%d->",p->next->data);
Temp=p->next;
p->next=Temp->next;
free(Temp);
p=p->next;
}
printf("%d\n",p->data);
return 0;
}
|
|