C++中如何实现循环链表和约瑟夫环
发表于:2025-01-21 作者:千家信息网编辑
千家信息网最后更新 2025年01月21日,本篇内容介绍了"C++中如何实现循环链表和约瑟夫环"的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!循环
千家信息网最后更新 2025年01月21日C++中如何实现循环链表和约瑟夫环
本篇内容介绍了"C++中如何实现循环链表和约瑟夫环"的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!
循环链表和约瑟夫环
循环链表的实现
单链表只有向后结点,当单链表的尾链表不指向NULL,而是指向头结点时候,形成了一个环,成为单循环链表,简称循环链表。当它是空表,向后结点就只想了自己,这也是它与单链表的主要差异,判断node->next是否等于head。
代码实现分为四部分:
初始化
插入
删除
定位寻找
代码实现:
void ListInit(Node *pNode){ int item; Node *temp,*target; cout<<"输入0完成初始化"<>item; if(!item) return ; if(!(pNode)){ //当空表的时候,head==NULL pNode = new Node ; if(!(pNode)) exit(0);//未成功申请 pNode->data = item; pNode->next = pNode; } else{ // for(target = pNode;target->next!=pNode;target = target->next) ; temp = new Node; if(!(temp)) exit(0); temp->data = item; temp->next = pNode; target->next = temp; } }} void ListInsert(Node *pNode,int i){ //参数是首节点和插入位置 Node *temp; Node *target; int item; cout<<"输入您要插入的值:"< >item; if(i==1){ temp = new Node; if(!temp) exit(0); temp->data = item; for(target=pNode;target->next != pNode;target = target->next) ; temp->next = pNode; target->next = temp; pNode = temp; } else{ target = pNode; for (int j=1;j next; temp = new Node; if(!temp) exit(0); temp->data = item; temp->next = target->next; target->next = temp; }}void ListDelete(Node *pNode,int i){ Node *target,*temp; if(i==1){ for(target=pNode;target->next!=pNode;target=target->next) ; temp = pNode;//保存一下要删除的首节点 ,一会便于释放 pNode = pNode->next; target->next = pNode; delete temp; } else{ target = pNode; for(int j=1;j next; temp = target->next;//要释放的node target->next = target->next->next; delete temp; }}int ListSearch(Node *pNode,int elem){ //查询并返回结点所在的位置 Node *target; int i=1; for(target = pNode;target->data!=elem && target->next!= pNode;++i) target = target->next; if(target->next == pNode && target->data!=elem) return 0; else return i;}
约瑟夫问题
约瑟夫环(约瑟夫问题)是一个数学的应用问题:已知n个人(以编号1,2,3...n分别表示)围坐在一张圆桌周围。从编号为k的人开始报数,数到m的那个人出列;他的下一个人又从1开始报数,数到m的那个人又出列;依此规律重复下去,直到圆桌周围的人全部出列。这类问题用循环列表的思想刚好能解决。
注意:编写代码的时候,注意报数为m = 1的时候特殊情况
#include#include using namespace std;typedef struct Node{ int data; Node *next;};Node *Create(int n){ Node *p = NULL, *head; head = new Node; if (!head) exit(0); p = head; // p是当前指针 int item=1; if(n){ int i=1; Node *temp; while(i<=n){ temp = new Node; if(!temp) exit(0); temp->data = i++; p->next = temp; p = temp; } p->next = head->next; } delete head; return p->next;}void Joseph(int n,int m){ //n为总人数,m为数到第m个的退出 m = n%m; Node *start = Create(n); if(m){//如果取余数后的m!=0,说明 m!=1 while(start->next!=start){ Node *temp = new Node; if(!temp) exit(0); for(int i=0;i next; temp = start->next; start->next = start->next->next; start = start->next; cout< data<<" "; delete temp; } } else{ for(int i=0;i data<<" "; temp = start; start = start->next; delete temp; } } cout< data< "C++中如何实现循环链表和约瑟夫环"的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识可以关注网站,小编将为大家输出更多高质量的实用文章!
约瑟
约瑟夫
环链
时候
结点
问题
代码
C++
个人
位置
内容
圆桌
情况
更多
知识
节点
输入
实用
特殊
成功
数据库的安全要保护哪些东西
数据库安全各自的含义是什么
生产安全数据库录入
数据库的安全性及管理
数据库安全策略包含哪些
海淀数据库安全审计系统
建立农村房屋安全信息数据库
易用的数据库客户端支持安全管理
连接数据库失败ssl安全错误
数据库的锁怎样保障安全
奥睿科硬盘服务器
改微信号一直服务器繁忙
服务器启动失败
软件开发的硬件和软件环境
意识形态网络安全底线
教育局网络安全专项检查
x58双路高性能服务器怎么升级
网络安全在身边心得150字
科技互联网公司排行榜
论文数据库分析
17年网络安全考试题
联想服务器cpu更换视频
江西戴尔服务器诚邀品鉴云主机
网络安全的环境是什么
思软洗浴数据库
ios软件开发方案价格
七年级网络安全绘画
交通银行软件开发有限公司
成都软件开发室
云服务器3d游戏几个人
新媒体运营与网络安全
电子文献 数据库
server u 服务器
数据库table什么意思
临沂天马网络技术有限公司
人力资源网络技术就业前景
添加其他工程服务器
网络技术对数学的要求
软件开发师的长期目标
数据库实验指导书