资源简介
这是我刚学c语言时老师给我们的大作业--斗地主。
里面有简单的界面,AI,由于是初学时的作品,所以相当的简陋,不过对刚学c语言的朋友们还是有参考作用的

代码片段和文件信息
/* Note:Your choice is C IDE */
/****************************************************************
查找牌中大于x的最小的单牌,返回该牌的大小,如未找到返回-1
*/
int search_min_single(struct card *headint x)
{
int dou=0;
struct card *tmp1*tmp2*tmp3;
tmp1=tmp2=tmp3=(struct card *)malloc(sizeof(struct card));
tmp1=head->next;
tmp2=tmp1->next;
tmp3=0;
do
{
if(tmp1->num==tmp2->num)
{
dou++;
}
else
{
if(dou==0)
{
if(tmp1->num>x)
tmp3=tmp1;
}
else
{
dou=0;
}
}
tmp1=tmp2;
tmp2=tmp2->next;
}while(tmp1!=0);
if(tmp3==0)
return -1;
else
return tmp3->num;
}
/****************************************************************
查找牌中大于xx的最小的牌如找到返回该牌第一张的大小,如未找到返回-1
*/
int search_min_double(struct card *headint x)
{
struct card *p1*p2*p3*p4*tmp;
p1=p2=p3=p4=tmp=(struct card *)malloc(sizeof(struct card));
p1=head;
tmp=-1;
do
{
p2=p1->next;
p3=p2->next;
p4=p3->next;
if(p1->num!=p2->num&&p2->num==p3->num&&p3->num!=p4->num)
{
if(p2->num>x)
{
tmp=p2;
}
}
p1=p1->next;
}while(p4!=0);
if(tmp==-1)
return -1;
else
return tmp->num;
}
/****************************************************************
查找牌中大于xxx的最小的牌如找到返回该牌第一张的大小,如未找到返回-1
*/
int search_min_triangle(struct card *headint x)
{
struct card *p1*p2*p3*p4*p5*tmp;
p1=p2=p3=p4=p5=tmp=(struct card *)malloc(sizeof(struct card));
p1=head;
tmp=-1;
do
{
p2=p1->next;
p3=p2->next;
p4=p3->next;
p5=p4->next;
if(p1->num!=p2->num&&p2->num==p3->num&&p3->num==p4->num&&p4->num!=p5->num)
{
if(p2->num>x)
{
tmp=p2;
}
}
p1=p1->next;
}while(p5!=0);
if(tmp==-1)
return -1;
else
return tmp->num;
}
/****************************************************************
查找牌中大于xxxx的最小的牌并删除,如成功,返回1,反之,返回0
*/
int search_min_fourfold(struct card *headstruct card *tableint x)
{
struct card *p1*p2*p3*p4*p5*p6*tmp;
p1=p2=p3=p4=p5=p6=tmp=(struct card *)malloc(sizeof(struct card));
p1=head;
tmp=-1;
do
{
p2=p1->next;
p3=p2->next;
p4=p3->next;
p5=p4->next;
p6=p5->next;
if(p1->num!=p2->num&&p2->num==p3->num&&p3->num==p4->num&&p4->num==p5->num&&p5->num!=p6->num)
{
if(p2->num>x)
{
tmp=p2;
}
}
p1=p1->next;
}while(p6!=0);
if(tmp==-1)
return 0;
else
{
p1=tmp->next;
p2=p1->next;
p3=p2->next;
p4=p3->next;
tmp->next=p4->next;
for(p5=table;p5->next!=0;p5=p5->next){} /*将tmp3连接到table上去*/
p5->next=p1;
p5=p1;
p5->next=p2;
p5=p2;
p5->next=p3;
p5=p3;
p5->next=p4;
p4->next=0;
}
return 1;
}
/*****************************************************************
查找牌中大小等于x的牌,如找到,返回改牌在链表中的序列号,反之,返回-1
*/
int search_value_equal_x(struct card *headint x)
{
int positioni;
struct card *tmp;
tmp=(struct card *)
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 17737 2008-01-03 18:08 斗地主\Ai.c
文件 6087 2007-12-02 14:54 斗地主\ChuPai.c
文件 9473 2008-01-09 08:22 斗地主\HuaPai.c
文件 6096 2008-01-04 10:24 斗地主\main.c
目录 0 2009-01-15 11:48 斗地主
----------- --------- ---------- ----- ----
39393 5
- 上一篇:基于MFC实现的FTP断点续传客户端
- 下一篇:c++写的马尔科夫聚类算法MCL
相关资源
- 小波变换算法 c语言版
- 学校超市选址问题(数据结构C语言版
- 数据结构,迷宫问题C语言版源代码
- C语言版3D魔方游戏源代码
- DSDEMO-C演示(数据结构C语言版 严蔚敏
- 烟花优化算法(c语言版)
- 数据结构(C语言版)ppt课件,清华,
- 连连看源代码C语言版
- 数据结构C语言版教学笔记严蔚敏
- 数据结构C语言版期末考试试题(有答
- C语言斗地主源代码
- c语言斗地主
- C++实现的斗地主游戏
- (严版C语言版数据结构源码.rar
- C语言版经纬度与高斯投影相互转换函
- 数据结构C语言版第二版严蔚敏-课后答
- 数据结构 C语言版 第2版 严蔚敏 李冬
- 学生成绩管理系统 (C语言版)课程设
- 各种加密算法C语言版
- MPI与OpenMP并行程序设计:C语言版
- 数据结构c语言版第2版课后习题答案
- 学校教材订购系统,C语言版,内容详
- C语言版俄罗斯方块基于EASYX库
- MFC邮件发送程序(C语言版带界面)
- 公园的导游图C语言版
- 数据结构(C语言版)第2版习题答案—
- 数据结构C语言版PPT 清华大学出版社
- 斗地主C++实现
- Windows下基于ModbusTcp的Server端开发C语言
- VC++开发的斗地主的网络游戏源码
评论
共有 条评论