搜索功能
binggo1226
这个作者很懒,什么都没留下…
展开
-
poj1724_ROADS(优先队列广搜)
//本质上是对所有1为起点的路径的穷举 //但是这个数字太大了,深度搜索很有可能超时 //所以使用广度优先搜索 //一般的广度搜索是选择步数最少者为优,然而这次要选择距离短为优 //所以使用了优先队列而非普通队列 //有一个要注意的:Notice that different roads may have the same source and destination cities.建立图原创 2017-04-09 20:40:35 · 404 阅读 · 0 评论 -
UVa_11212(迭代加深搜索)
#include<iostream>#include<cstring>using namespace std;const int maxn = 400000;bool Vis[maxn];int n;int D[10];int kangtuo(int A[9]){ int t = 0; for (int i = 0; i<n; i++) { i原创 2017-04-13 20:04:35 · 294 阅读 · 0 评论