一只橘橘猫
一只橘橘猫
全部文章
人工智能
coderforces(20)
dp动态规划(3)
icpc(8)
KMP算法(3)
leetcode(1)
STL(1)
优先队列(1)
图论(3)
字符串(5)
搜索(2)
数学(4)
日记(1)
最短路(3)
未归档(29)
杭电多校(7)
牛客多校(11)
牛客寒假训练营2020(6)
牛客练习赛(8)
线段树 树状数组(2)
贪心(4)
题解(25)
归档
标签
去牛客网
登录
/
注册
一只橘橘猫的博客
希望做个有用的人
全部文章
/ 人工智能
(共2篇)
A*算法解决八数码
https://blog.csdn.net/lishang6257/article/details/79732420 #include <bits/stdc++.h> using namespace std; #define ll long long const int INF = ...
A*
2019-09-11
0
583
九宫格广度优搜索的c++算法实现
题意: 给出一个3*3的矩阵,数字0-8,问你能否通过移动组成给定的矩阵,给定矩阵如图所示:1 2 34 5 67 8 0 样例: input:1 2 34 5 60 7 8output:移动的次数:2移动的步骤:R->R 题解: 广度优先搜索 代码: #include <bits/st...
2019-09-04
0
723