数据结构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

相关文章

Spring 中的循环引用问题解决方法

《Spring中的循环引用问题解决方法》:本文主要介绍Spring中的循环引用问题解决方法,本文给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友参考下吧... 目录什么是循环引用?循环依赖三级缓存解决循环依赖二级缓存三级缓存本章来聊聊Spring 中的循环引用问题该如何解决。这里聊

C语言中位操作的实际应用举例

《C语言中位操作的实际应用举例》:本文主要介绍C语言中位操作的实际应用,总结了位操作的使用场景,并指出了需要注意的问题,如可读性、平台依赖性和溢出风险,文中通过代码介绍的非常详细,需要的朋友可以参... 目录1. 嵌入式系统与硬件寄存器操作2. 网络协议解析3. 图像处理与颜色编码4. 高效处理布尔标志集合

Go语言开发实现查询IP信息的MCP服务器

《Go语言开发实现查询IP信息的MCP服务器》随着MCP的快速普及和广泛应用,MCP服务器也层出不穷,本文将详细介绍如何在Go语言中使用go-mcp库来开发一个查询IP信息的MCP... 目录前言mcp-ip-geo 服务器目录结构说明查询 IP 信息功能实现工具实现工具管理查询单个 IP 信息工具的实现服

C 语言中enum枚举的定义和使用小结

《C语言中enum枚举的定义和使用小结》在C语言里,enum(枚举)是一种用户自定义的数据类型,它能够让你创建一组具名的整数常量,下面我会从定义、使用、特性等方面详细介绍enum,感兴趣的朋友一起看... 目录1、引言2、基本定义3、定义枚举变量4、自定义枚举常量的值5、枚举与switch语句结合使用6、枚

C# foreach 循环中获取索引的实现方式

《C#foreach循环中获取索引的实现方式》:本文主要介绍C#foreach循环中获取索引的实现方式,本文给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友参考下吧... 目录一、手动维护索引变量二、LINQ Select + 元组解构三、扩展方法封装索引四、使用 for 循环替代

Spring Boot循环依赖原理、解决方案与最佳实践(全解析)

《SpringBoot循环依赖原理、解决方案与最佳实践(全解析)》循环依赖指两个或多个Bean相互直接或间接引用,形成闭环依赖关系,:本文主要介绍SpringBoot循环依赖原理、解决方案与最... 目录一、循环依赖的本质与危害1.1 什么是循环依赖?1.2 核心危害二、Spring的三级缓存机制2.1 三

Go 语言中的select语句详解及工作原理

《Go语言中的select语句详解及工作原理》在Go语言中,select语句是用于处理多个通道(channel)操作的一种控制结构,它类似于switch语句,本文给大家介绍Go语言中的select语... 目录Go 语言中的 select 是做什么的基本功能语法工作原理示例示例 1:监听多个通道示例 2:带

C语言函数递归实际应用举例详解

《C语言函数递归实际应用举例详解》程序调用自身的编程技巧称为递归,递归做为一种算法在程序设计语言中广泛应用,:本文主要介绍C语言函数递归实际应用举例的相关资料,文中通过代码介绍的非常详细,需要的朋... 目录前言一、递归的概念与思想二、递归的限制条件 三、递归的实际应用举例(一)求 n 的阶乘(二)顺序打印

springboot循环依赖问题案例代码及解决办法

《springboot循环依赖问题案例代码及解决办法》在SpringBoot中,如果两个或多个Bean之间存在循环依赖(即BeanA依赖BeanB,而BeanB又依赖BeanA),会导致Spring的... 目录1. 什么是循环依赖?2. 循环依赖的场景案例3. 解决循环依赖的常见方法方法 1:使用 @La

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

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