C++程序设计教程 第3版——习题九第18题的两种算法

提示:文章写完后,目录可以自动生成,如何生成可参考右边的帮助文档


一、问题

请添加图片描述

二、代码

18普通版

代码如下:

#include<iostream>
#include<iomanip>
using namespace std;
struct node
{
	int data;
	node *next;
};
node *create_set(int n)
{
	node *p1,*p2=NULL,*head;
	int a;
	head=NULL;
	cout<<"正在创建一条循环列表...\n";
	for(a=1;a<=n;a++)
	{
		p1=new node;
		p1->data=a;
		if(head==NULL)
			head=p2=p1;
		else
		{
			p2->next=p1;
			p2=p1;
		}
	}
	if(head!=NULL)
		p2->next=head;
	return(head);
}
void count_list(node*head,int m)
{
	node*p1;
	int i=1,b;
	cout<<"依次退出圈子的人为:";
	while((head->data)!=(head->next)->data)
	{
		if(i==(m-1))
		{
			i=0;
			b=(head->next)->data;
			cout<<b<<endl;
			p1=head->next;
			head->next=(head->next)->next;
			delete p1;
		}
		else
		{
			i++;
			head=head->next;
		}
	}
	b=head->data;
	cout<<"留在圈子里的人的序号:"<<b<<endl;
	delete head;
}
int main()
{
	node*head;
	int n,m;
	cout<<"请输入圈子的人数:"<<endl;
	cin>>n;
	cout<<"请输入m的值:"<<endl;
	cin>>m;
	head=create_set(n)count_list(head,m);
	return 0;
}

18提升版

代码如下:

#include<iostream>
#include<iomanip>
using namespace std;
struct node
{
	int data;
	node *next;
};
node *create_set(int n)
{
	node *p1,*p2=NULL,*head;
	int a;
	head=NULL;
	cout<<"正在创建一条循环列表...\n";
	for(a=1;a<=n;a++)
	{
		p1=new node;
		p1->data=a;
		if(head==NULL)
			head=p2=p1;
		else
		{
			p2->next=p1;
			p2=p1;
		}
	}
	if(head!=NULL)
		p2->next=head;
	return(head);
}
void free(node*head)
{
	node*p;
	while(head->next)
	{
		p=head;
		head=head->next;
		delete p;
	}
	delete head;
}
void count_list(node*head,int m)
{
	node*p1,*p2;
	int i=1,b;
	cout<<"依次退出圈子的人为:";
	if(m==1)
	{
		p2=head;
		while(head->next&&head->next!=p2)
		{
			b=head->data;
			p1=head;
			head=head->next;
			cout<<b<<endl;
			delete p1;
		}
	}
	else
	{
		while(head!=head->next)
		{
		
		
		
			if(i==m-1)
			{
			  i=0;
			  b=(head->next)->data;
			  cout<<b<<endl;
			  p1=head->next;
			  head->next=(head->next)->next;
			  delete p1;
			}
		    else
			{
			  i++;
			  head=head->next;
			}
		
		}
	}
	b=head->data;
	cout<<"留在圈子里的人的序号:"<<b<<endl;
	delete head;
	
}
int main()
{
	node*head;
	int n,m;
	cout<<"请输入圈子的人数:"<<endl;
	cin>>n;
	cout<<"请输入m的值:"<<endl;
	cin>>m;
	head=create_set(n);
	count_list(head,m);
	return 0;
}


			



	


总结

创作不易,如果这篇文章帮到你的话,可以点赞支持一下哦。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值