数据结构C语言循环链表练习之俄罗斯轮盘赌

2023-11-09 11:20

本文主要是介绍数据结构C语言循环链表练习之俄罗斯轮盘赌,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

编译器:

/*****************************
*project :数据结构
*function :循环链表之俄罗斯赌盘
*Author :Rookie Uzz
*****************************
*copyright:2019.2.27 by UZT
****************************/

 1 #include <stdio.h>
 2 #include <stdlib.h>
 3 #include "CListTest.h"
 4 #include <time.h>
 5 #define MAX_NUM 1000    //最大容量
 6 
 7 int Bet();
 8 
 9 int main()
10 {
11     Bet();
12     return 0;
13 }
14 
15 int Bet()
16 {
17     /** 被杀死的赌徒地址 */
18     Gambler * n = (Gambler*)malloc(sizeof(Gambler));
19     /** 被删除的结点 */
20     lineNode * nodee;
21     /** 链表删除位置 */
22     int pos = 0;
23     /** 赌徒个数 */
24     int num;
25     /** 轮数 */
26     int round = 1;
27     /** 赌徒数据 */
28     Gambler gab[MAX_NUM];
29     //先设置随机数种子,time(0)是得到当前时时间值
30     srand((int)time(NULL));
31     /** 子弹 */
32     int shoot;
33     /** 定义链表 */
34     linelist * line = (linelist*)malloc(sizeof(linelist));
35     printf("请输入赌徒个数:");
36     scanf("%d",&num);
37     //初始化链表
38     for(int i = 0;i < num;i++)
39     {
40         gab[i].id = i+1;
41     }
42     InitLine(line,gab,num);
43     printf("按任意键继续......\n");
44     getchar();
45     getchar();
46     printf("初始化后赌徒分别是:\n");
47     PrintLine(line);
48     /*
49     nodee = deleteLine(line,7);
50     printf("删除后链表为:\n");
51     PrintLine(line);
52     int n = SearchPos(line,nodee);
53     printf("该结点的位置是:%d",n);
54     */
55 
56     nodee = line -> next;
57     while(num != 1)
58     {
59         printf("\n*********************************\n");
60         pos = SearchPos(line,nodee);
61         printf("第%d轮,从%d号赌徒开始\n",round,nodee -> persons.id);
62         shoot = rand()%num + 1;
63         pos += (shoot - 1);
64         printf("枪在第 %d 次扣动扳机时会响\n",shoot);
65         nodee = deleteLine(line,pos,n);
66         printf("编号为 %d 的赌徒被杀死,剩余赌徒编号依次为:\n",n -> id);
67         PrintLine(line);
68         num--;
69         round++;
70         printf("*********************************\n");
71     }
72     printf("最终胜利的赌徒编号是:%d\n",line -> next -> persons.id);
73     free(line);
74     free(n);
75     return 0;
76 }
main.c文件
 1 #ifndef ELEMENT_H_INCLUDED
 2 #define ELEMENT_H_INCLUDED
 3 #define OK 1
 4 #define FALSE -1
 5 
 6 /** 定义赌徒 */
 7 typedef struct Gambler{
 8     int id;
 9     //char * name;
10 }Gambler;
11 
12 #endif
Element.h文件
 1 #ifndef CLISTTEST_H_INCLUDED
 2 #define CLISTTEST_H_INCLUDED
 3 #include "Element.h"
 4 
 5 /** 定义一个循环链表结点 */
 6 typedef struct lineNode{
 7     Gambler persons;     //数据域
 8     struct lineNode * next; //指针域
 9 }lineNode;
10 
11 /** 定义一个头指针 */
12 typedef struct linelist{
13     lineNode * next;
14     int length;
15 }linelist;
16 
17 /** 初始化链表 */
18 void InitLine(linelist * line,Gambler * person,int length);
19 
20 /** 插入链表 */
21 void InsertLine(linelist * line,Gambler person,int pos);
22 
23 /** 删除并返回删除节点的下一结点 */
24 lineNode * deleteLine(linelist * line,int pos,Gambler * num);
25 
26 /** 打印 */
27 void PrintLine(linelist * line);
28 
29 /** 通过结点查找位置 */
30 int SearchPos(linelist * line,lineNode * nodee);
31 
32 
33 #endif // CLISTTEST_H_INCLUDED
CListTest.h文件
  1 /*****************************
  2 *project    :数据结构
  3 *function   :循环链表之俄罗斯赌盘
  4 *Author        :rookie uzz
  5 *****************************
  6 *copyright:2019.2.27 by UZT
  7 ****************************/
  8 #include <stdio.h>
  9 #include <stdlib.h>
 10 #include "CListTest.h"
 11 
 12 /** 初始化链表 */
 13 void InitLine(linelist * line,Gambler * person,int length)//应该引入*person
 14 {
 15     line -> next = NULL;
 16     line -> length = 0;
 17     for(int  i  = 0;i < length;i++)
 18     {
 19         InsertLine(line,person[i],i+1);
 20     }
 21     printf("长度为:%d\n",line -> length);
 22 }
 23 
 24 /** 插入链表 */
 25 void InsertLine(linelist * line,Gambler person,int pos)
 26 {
 27     lineNode * node = (lineNode*)malloc(sizeof(lineNode));
 28     node -> persons = person;
 29     node -> next = NULL;
 30     if(pos == 1)
 31     {
 32         if(line -> length == 0)
 33         {
 34             line -> next = node;
 35             node -> next = node;
 36         }
 37         else
 38         {
 39             lineNode * lastNode = line -> next;
 40             for(int i = 0;i < ((line -> length) - 1);i++)
 41             {
 42                 lastNode = lastNode -> next;
 43             }
 44             node -> next = line -> next;
 45             line -> next = node;
 46             lastNode -> next = node;
 47         }
 48         line -> length++;//不要忘了加长!!!!
 49         return;
 50     }
 51     lineNode * currentNode = line -> next;
 52     for(int i = 1;i < pos - 1;i++)
 53     {
 54         currentNode = currentNode -> next;
 55     }
 56     node -> next = currentNode -> next;
 57     currentNode -> next = node;
 58     line -> length++;
 59 }
 60 
 61 /** 删除并返回删除节点的下一结点 */
 62 lineNode * deleteLine(linelist * line,int pos,Gambler * num)
 63 {
 64     lineNode * returnNode;
 65     lineNode * node = line -> next;
 66     if((pos % (line -> length)) == 1)//关键,最大bug
 67     {
 68         if(node)
 69         {
 70             *num = node -> persons;
 71             lineNode * lastNode = line -> next;
 72             for(int i = 1;i < line -> length;i++)
 73             {
 74                 lastNode = lastNode -> next;
 75             }
 76             line -> next  = node -> next;
 77             lastNode -> next = line -> next;
 78             free(node);
 79         }
 80         line -> length--;
 81         returnNode = line -> next;
 82         return returnNode;
 83     }
 84     lineNode * preNode;
 85     for(int i = 1;node&&i < pos;i++)
 86     {
 87         preNode = node;
 88         node  = node -> next;
 89     }
 90     if(node)
 91     {
 92         *num = node -> persons;
 93         returnNode = node -> next;
 94         preNode -> next = node -> next;
 95         line -> length--;
 96         free(node);
 97     }
 98     return returnNode;
 99 }
100 
101 /** 打印 */
102 void PrintLine(linelist * line)
103 {
104     if(line -> length == 0 || !line -> next)
105     {
106         printf("链表为空!\n");
107         return;
108     }
109     lineNode * node = line -> next;
110     for(int i = 0;i < line -> length;i++)
111     {
112         printf("%d号赌徒\t",node -> persons.id);
113         node = node -> next;
114     }
115     printf("\n");
116 }
117 
118 /** 通过结点查找位置 */
119 int SearchPos(linelist * line,lineNode * nodee)
120 {
121     lineNode * node = line -> next;
122     if(node == nodee)
123         return 1;
124     for(int i = 1;i < line -> length;i++)
125     {
126         node = node -> next;
127         if(node == nodee)
128         {
129             return i + 1;
130         }
131     }
132     return FALSE;
133 }
CListTest.c文件

转载于:https://www.cnblogs.com/cnlntr/p/10458877.html

这篇关于数据结构C语言循环链表练习之俄罗斯轮盘赌的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/375799

相关文章

C#数据结构之字符串(string)详解

《C#数据结构之字符串(string)详解》:本文主要介绍C#数据结构之字符串(string),具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录转义字符序列字符串的创建字符串的声明null字符串与空字符串重复单字符字符串的构造字符串的属性和常用方法属性常用方法总结摘

C语言中的数据类型强制转换

《C语言中的数据类型强制转换》:本文主要介绍C语言中的数据类型强制转换方式,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录C语言数据类型强制转换自动转换强制转换类型总结C语言数据类型强制转换强制类型转换:是通过类型转换运算来实现的,主要的数据类型转换分为自动转换

利用Go语言开发文件操作工具轻松处理所有文件

《利用Go语言开发文件操作工具轻松处理所有文件》在后端开发中,文件操作是一个非常常见但又容易出错的场景,本文小编要向大家介绍一个强大的Go语言文件操作工具库,它能帮你轻松处理各种文件操作场景... 目录为什么需要这个工具?核心功能详解1. 文件/目录存javascript在性检查2. 批量创建目录3. 文件

C语言实现两个变量值交换的三种方式

《C语言实现两个变量值交换的三种方式》两个变量值的交换是编程中最常见的问题之一,以下将介绍三种变量的交换方式,其中第一种方式是最常用也是最实用的,后两种方式一般只在特殊限制下使用,需要的朋友可以参考下... 目录1.使用临时变量(推荐)2.相加和相减的方式(值较大时可能丢失数据)3.按位异或运算1.使用临时

使用C语言实现交换整数的奇数位和偶数位

《使用C语言实现交换整数的奇数位和偶数位》在C语言中,要交换一个整数的二进制位中的奇数位和偶数位,重点需要理解位操作,当我们谈论二进制位的奇数位和偶数位时,我们是指从右到左数的位置,本文给大家介绍了使... 目录一、问题描述二、解决思路三、函数实现四、宏实现五、总结一、问题描述使用C语言代码实现:将一个整

Python循环缓冲区的应用详解

《Python循环缓冲区的应用详解》循环缓冲区是一个线性缓冲区,逻辑上被视为一个循环的结构,本文主要为大家介绍了Python中循环缓冲区的相关应用,有兴趣的小伙伴可以了解一下... 目录什么是循环缓冲区循环缓冲区的结构python中的循环缓冲区实现运行循环缓冲区循环缓冲区的优势应用案例Python中的实现库

C语言字符函数和字符串函数示例详解

《C语言字符函数和字符串函数示例详解》本文详细介绍了C语言中字符分类函数、字符转换函数及字符串操作函数的使用方法,并通过示例代码展示了如何实现这些功能,通过这些内容,读者可以深入理解并掌握C语言中的字... 目录一、字符分类函数二、字符转换函数三、strlen的使用和模拟实现3.1strlen函数3.2st

Go语言中最便捷的http请求包resty的使用详解

《Go语言中最便捷的http请求包resty的使用详解》go语言虽然自身就有net/http包,但是说实话用起来没那么好用,resty包是go语言中一个非常受欢迎的http请求处理包,下面我们一起来学... 目录安装一、一个简单的get二、带查询参数三、设置请求头、body四、设置表单数据五、处理响应六、超

C语言中的浮点数存储详解

《C语言中的浮点数存储详解》:本文主要介绍C语言中的浮点数存储详解,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录1、首先明确一个概念2、接下来,讲解C语言中浮点型数存储的规则2.1、可以将上述公式分为两部分来看2.2、问:十进制小数0.5该如何存储?2.3 浮点

Java嵌套for循环优化方案分享

《Java嵌套for循环优化方案分享》介绍了Java中嵌套for循环的优化方法,包括减少循环次数、合并循环、使用更高效的数据结构、并行处理、预处理和缓存、算法优化、尽量减少对象创建以及本地变量优化,通... 目录Java 嵌套 for 循环优化方案1. 减少循环次数2. 合并循环3. 使用更高效的数据结构4