o*e
2 楼
我挺喜欢崔健的,但我觉得他用尊不尊重观众来点评,很虚而且有把自己的个人观点强
加于大众的嫌疑。
加于大众的嫌疑。
s*9
4 楼
据悉,崔健在节目初期就会在休息室喝点小酒,最近更是酒不离身,从而引发网友热议
。对此,崔健日前做出回应,坦言喝酒是为了缓解压力,不要让人感觉太严肃,“其实
我平常不酗酒,也不是酒腻子,但喝了酒放松,就开始‘胡说八道’,爱怎么着怎么着
。”
。对此,崔健日前做出回应,坦言喝酒是为了缓解压力,不要让人感觉太严肃,“其实
我平常不酗酒,也不是酒腻子,但喝了酒放松,就开始‘胡说八道’,爱怎么着怎么着
。”
A*3
5 楼
恩,就是最常见的那种迷宫,二维数组表示的,0表示路,1表示墙。
判断有没有解
判断有没有解
a*n
9 楼
BFS/DFS with mark table
A*3
11 楼
Give a maze, represented by an int array maze[][]
for example
0 1 0 0 0
1 1 1 0 0
1 0 1 1 1
0 0 0 0 1
1 1 1 1 1
0 is passage, 1 is wall
please give an algorithm to design if the maze is solvable or not
for example
0 1 0 0 0
1 1 1 0 0
1 0 1 1 1
0 0 0 0 1
1 1 1 1 1
0 is passage, 1 is wall
please give an algorithm to design if the maze is solvable or not
g*s
13 楼
j*u
15 楼
A* search
http://en.wikipedia.org/wiki/A*_search_algorithm
【在 A*********3 的大作中提到】
: 请问判断一个迷宫有没有解,除了BFS, DFS,递归调用,还有什么别的办法吗?非常感
: 谢!
http://en.wikipedia.org/wiki/A*_search_algorithm
【在 A*********3 的大作中提到】
: 请问判断一个迷宫有没有解,除了BFS, DFS,递归调用,还有什么别的办法吗?非常感
: 谢!
s*y
18 楼
说话要分场合。 不可以没有manner 你看美国偶像 有哪个选手对评委不满评委吵架
的 就算simon再毒舌。
的 就算simon再毒舌。
h*6
19 楼
A*本质上还是Dijkstra
这题里面所有边长都为1,可以简化题目,不必使用优先队列,而用一个普通队列完成
遍历。
【在 j*****u 的大作中提到】
: A* search
: http://en.wikipedia.org/wiki/A*_search_algorithm
这题里面所有边长都为1,可以简化题目,不必使用优先队列,而用一个普通队列完成
遍历。
【在 j*****u 的大作中提到】
: A* search
: http://en.wikipedia.org/wiki/A*_search_algorithm
b*e
21 楼
如果只要判断有无解的话,用个 Disjoint Set 就够了。
o*e
23 楼
版主应该管管满口脏话的
相关阅读