- 1、本文档共13页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
人工智能A星算法解决八数码难题程序代码
#include Stdio.h#include Conio.h#include stdlib.h#include math.hvoid Copy_node(struct node *p1,struct node *p2);void Calculate_f(int deepth,struct node *p);void Add_to_open(struct node *p);void Add_to_closed(struct node *p);void Remove_p(struct node *name,struct node *p);int Test_A_B(struct node *p1,struct node *p2);struct node * Search_A(struct node *name,struct node *temp);void Print_result(struct node *p);struct node // 定义8数码的节点状态{ int s[3][3]; //当前8数码的状态 int i_0; //当前空格所在行号 int j_0; //当前空格所在列号 int f; //当前代价值 int d; //当前节点深度 int h; //启发信息,采用数码不在位距离和 struct node *father; //指向解路径上该节点的父节点 struct node *next; //指向所在open或closed表中的下一个元素} ;struct node s_0={{2,8,3,1,6,4,7,0,5},2,1,0,0,0,NULL,NULL}; //定义初始状态struct node s_g={{1,2,3,8,0,4,7,6,5},1,1,0,0,0,NULL,NULL}; //定义目标状态struct node *open=NULL; //建立open表指针struct node *closed=NULL; //建立closed表指针int sum_node=0; //用于记录扩展节点总数//***********************************************************//********************** **********************//********************** 主函数开始 **********************//********************** **********************//***********************************************************void main(){ int bingo=0; //定义查找成功标志,bingo=1,成功 struct node s; //定义头结点s struct node *target,*n,*ls,*temp,*same; //定义结构体指针 Copy_node(s_0,s); //复制初始状s_0态给头结点s Calculate_f(0,s); //计算头结点的代价值 Add_to_open(s); //将头结点s放入open表 while(open!=NULL) //只要open表不为空,进行以下循环 { n=open; //n指向open表中当前要扩展的元素 ls=open-next; Add_to_closed(n); open=ls; //将n指向的节点放入closed表中 if(Test_A_B(n,s_g)) //当前n指向节点为目标时,跳出程序结束;否则,继续下面的步骤 { bingo=1; break; } elseif(n-j_0=1)
您可能关注的文档
- 专业硕士逻辑第2讲.pdf
- 专业论文——猪瘟.doc
- 专升本理科模拟题.doc
- 专项练习: 函数的单调性.doc
- 专题 指数函数及其性质(二) 课后练习二及详解.doc
- 专业硕士数学正整式与分式.pdf
- 三重积分概念(北工大).ppt
- 专题复习二地球和地球运动.doc
- 专题二第2讲课时训练提能.pdf
- 专题七 整体代入.doc
- 第一单元隋唐时期繁荣与开放的时代(原卷板).docx
- 第04讲测量平均速度(原卷版)-2022年新八年级物理暑假课(人教版).docx
- 第01课邓稼先(基础训练)(原卷版).docx
- Unit1单元小结-2022-2023学年七年级英语下册(牛津深圳版).docx
- 专题21书面表达考点4叙事描写类-2022年中考英语真题分项汇编(原卷版).docx
- 秘籍13 化学解答题(原卷版).docx
- 8.1牛顿第一定律2.docx
- 第13练感叹句-2022年七年级英语(牛津上海版).docx
- 儿童瑜伽培养小学生的身体协调性和集中力.pptx
- 第1章数学与我们同行全章复习与检测卷(4个知识点2种题型)(原卷版).docx
文档评论(0)