-
A*算法只要求产生问题的全部状态空间的部分结点及关系,就可以求解问题了,搜索效率较高。当然由于A*算法中没有回溯,因此某些情况下可能会找不到正确的解过程。...
A*算法只要求产生问题的全部状态空间的部分结点及关系,就可以求解问题了,搜索效率较高。当然由于A*算法中没有回溯,因此某些情况下可能会找不到正确的解过程。
-A* algorithm only requires a problem all part of the state space and the relationship between nodes, we can solve the problem, the search more efficient. Of course, as a result of A* algorithm is not retroactive, so some cases may be unable to find the correct solution of the process.
- 2022-01-26 07:51:35下载
- 积分:1
-
示例出列
这是只是一个示例代码 C 为队列。如何创建队列、 输入的队列、 删除队列、 排序和显示
- 2023-07-05 17:20:03下载
- 积分:1
-
有效的索赔系统
这是为客户提供高效理赔的系统,基于客户端的技术,有良好的效率。
- 2023-06-29 08:15:04下载
- 积分:1
-
oracle9i错误号查询
oracle9i错误号查询-wrong inquiry
- 2022-02-07 20:43:51下载
- 积分:1
-
数据结构——链表(双向循环链表)
双向循环链表节点:数据域+指针域指针域:一个指针指向前一个同类型节点,另一个指针指向后一个同类型节点(1)设计节点struct db_node{int data;struct db_node * prev;struct db_node * next;};(2)创建空链表//创建了一个只有头节点的双向循环链表,返回头节点的地址struct db_node * create_db_list(void){struct db_node * phead = (struct db_node *)malloc(sizeof(struct db_node));if(phead == NULL)exit(-1);else{phead->next = phead;phead->prev = phead;}return phead;}(3)制造新节点//制造新节点,返回新节点的地址struct db_node * make_db_node(int value){struct db_node * pnew = (struct db_node *)malloc(sizeof(struct db_node));if(pnew == NULL)printf("malloc failed!
");else{pnew->data = value;pnew->next = NULL;pnew->prev = NULL;}return pnew;}(4)插入节点//把pnew指向的节点插入到头节点的前面,也就是整个链表的末尾bo
- 2022-02-14 07:06:11下载
- 积分:1
-
文件上传与印
文件上传与印如何上传一个文件,如果要上传图片或文件,您可以使用的代码。文件上传与印如何上传一个文件,如果要上传图片或文件,您可以使用的代码,
- 2022-01-30 21:52:09下载
- 积分:1
-
数据库SQL语句应用大全
数据库SQL语句应用大全-SQL database application Daquan
- 2023-03-28 13:45:03下载
- 积分:1
-
一个时钟(foxpro源码),虽然简单,但对初学者有用。
一个时钟(foxpro源码),虽然简单,但对初学者有用。
-a clock (foxpro source), although simple, but useful for beginners.
- 2023-08-08 17:00:03下载
- 积分:1
-
画圆弧
画圆弧-Paintings arc
- 2022-08-09 07:37:49下载
- 积分:1
-
directly through ODBC read and write Excel document
直接通过ODBC读写Excel表格文件-directly through ODBC read and write Excel document
- 2022-06-17 16:00:27下载
- 积分:1