登录
首页 » 其他项目 » 一个九宫问题的源码,a星算法,深度优先广度优先算法都有

一个九宫问题的源码,a星算法,深度优先广度优先算法都有

于 2022-01-25 发布 文件大小:45.00 kB
0 182
下载积分: 2 下载次数: 1

代码说明:

一个九宫问题的源码,a星算法,深度优先广度优先算法都有-a JiuGongTu the source, a Star algorithm, depth-first algorithm has breadth priority

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • 这是一个数字猜谜小游戏,用C写的#,
    这是一个c#语言编写的猜数字游戏,他能智能提示用户输入数的大小,类似幸运52一样-This is a digit guessing small game written in c#, smart reminder of user-input s digit, similiar with lucky 52
    2022-06-01 15:17:06下载
    积分:1
  • 简单的利用asp语言实现聊天室的简单功能,能自己加入数据库实现全部功能...
    简单的利用asp语言实现聊天室的简单功能,能自己加入数据库实现其全部功能-Asp simple language using a simple function of the chat room, adding to its own database to achieve its full functionality
    2022-03-26 18:41:53下载
    积分:1
  • 基于VC++ 的网络聊天室代码(windows 网络通信编程)
    基于VC++ 的网络聊天室代码(windows 网络通信编程)-VC++-based network of chat rooms
    2022-12-01 13:45:02下载
    积分:1
  • VC产生的临时文件有时真的很烦人!当你编译一个程序,突然系统弹出一个对话框:“D盘已经没有足够的空间~~~~~~~~~请问需要进行磁盘清理吗”,而它只能清掉了N...
    VC产生的临时文件有时真的很烦人!当你编译一个程序,突然系统弹出一个对话框:“D盘已经没有足够的空间~~~~~~~~~请问需要进行磁盘清理吗”,而它只能清掉了Nkb的东东,你有什么理由不自己写一个专门清理VC垃圾的小工具呢?隔一段时间运行一次,彻底清除指定类型的垃圾文件:干干净净,中国人.-Sometimes temporary files generated by VC s really annoying! When you compile a program, suddenly the system pop up a dialog box: "D drive has enough space ~~~~~~~~~ does not need to do Disk Cleanup," and it can only Qingdiao the Nkb the Dongdong, what is your reason not to write a special clean up their own litter of small VC tool? From time to time run once to remove the specified types of junk files: clean, the Chinese people.
    2022-08-18 08:27:55下载
    积分:1
  • 设计有理数类rational_number  数据成员: int numerator(分子) int denominator(...
    设计有理数类rational_number  数据成员: int numerator(分子) int denominator(分母)  成员函数 (1)构造函数rational_number ()和rational_number (int x, int y) (2)拷贝构造函数 (3) 重载运算符“+”、“-”、“*”和“/” 2. 设计有理数类rational_number  数据成员: int numerator(分子) int denominator(分母)  成员函数 (1)构造函数rational_number ()和rational_number (int x, int y) (2)拷贝构造函数  友元重载运算符“+”、“-”、“*”和“/” 3. 分别使用以上两个类,完成有理数的加、减、乘、除运算;验证其加运算、乘运算的交换律。 -Rational Design category rational_number
    2023-03-17 02:25:04下载
    积分:1
  • This information to flash the form of intuitive performance of the uCOS system i...
    本资料以flash形式直观的表现了uCOS系统在80x86平台上的任务切换-This information to flash the form of intuitive performance of the uCOS system in the 80x86 platform task switch
    2022-01-26 05:27:15下载
    积分:1
  • IEEE 754 Floating point
    IEEE 754 Floating point
    2022-07-18 06:19:04下载
    积分:1
  • telephone billing for procedures/* signal definition : clk : clock signal, which...
    电话计费器程序/*信号定义: clk: 时钟信号,本例中其频率值为1Hz; decide: 电话局反馈回来的信号,代表话务种类,“01”表示市话,“10”表示 长话,“11”表示特话; dispmoney: 用来显示卡内余额,其单位为角,这里假定能显示的最大数额为50 元 (500 角); disptime: 显示本次通话的时长; write,read: 当write 信号下降沿到来时写卡,当话卡插入,read 信号变高时读卡; warn: 余额过少时的告警信号。本例中,当打市话时,余额少于3 角,打长 话时,余额少于6 角,即会产生告警信号; cut: 当告警时间过长时自动切断通话信号。 */-telephone billing for procedures/* signal definition : clk : clock signal, which in this case, their frequency of 1Hz; decide : Telephone Bureau feedback signal, then the Treasury representative types, "01" Urban said, "10" The point said, "11" expressed special words; dispmoney : to show the card balance, the unit of angle, Here are supposed to show the maximum amount of 50 billion yuan (500 angle); disptime : The calls show the length; write, read : When the write signal arrival of the down time to write cards, When the card insert, read signal change high Reader; warn : Fees balance of the alarm signal. In this example, when fighting Cit
    2022-02-26 10:38:56下载
    积分:1
  • 该程序实现的是种子生命的模拟,生存:有两个或三个邻居的种子将存活到下一代,即仍然占据该格子; 死亡:如果有四个或更多的邻居,种子将因为过度拥挤而死亡;如果种...
    该程序实现的是种子生命的模拟,生存:有两个或三个邻居的种子将存活到下一代,即仍然占据该格子; 死亡:如果有四个或更多的邻居,种子将因为过度拥挤而死亡;如果种子只有一个或零个邻居,将因为孤独而死亡; 繁殖:如果一个空格子有三个邻居,那么将会长出一粒新种子。一种模式在经过若干代之后有以下四种可能的结局之一: 消亡; 不变――静态; 振荡――在一组模式间循环多次后在相同的位置出现相同的模式; 滑动――在一组模式间循环多次后在不同的位置出现相同的模式。该程序允许用户指定初始的模式或计算机自动创建初始的模式; 显示进化的过程,即历代模式; 当模式消亡就停止进化,或者提示用户是否继续显示下一代,或开始新的案例,抑或退出。 -The program implementation is the seed of life simulation, survival: There are two or three neighbors of the seed will survive to the next generation, that is still occupying the lattice Death: If there are four or more neighbors, the seeds will die because of overcrowding if seed is only one or zero neighbors, will die because of loneliness Breeding: If a sub-space has three neighbors, then it will grow a new seed. After a pattern after several generations have the following one of four possible outcomes: Die Constant- static Oscillation- a group of modes in the loop on many occasions in the same location after the same pattern emerged Sli
    2022-03-25 01:15:01下载
    积分:1
  • 一个图书馆管理系统。用ACCESS做成,包括了用户密码登陆,用户信息管理,图书查询,借还书籍,罚款信息等模块。...
    一个图书馆管理系统。用ACCESS做成,包括了用户密码登陆,用户信息管理,图书查询,借还书籍,罚款信息等模块。-A library management system. Make use of ACCESS, including the user password, the user information management, library inquiries, make use of books, a fine of information modules.
    2022-03-14 15:56:58下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载