摘要: 概述:本文主要讲述一些搜索算法的使用,以及其中奥妙思想的思考。 一:广度搜索与深度搜索---BFS与DFS 1:实现算法导论中的BSF #include #define MAX 1000000struct Node{ int d; int p; int color; int id;};int _tmain(int argc, _TCHAR* argv[])... 阅读全文
posted @ 2014-06-27 11:22 miner007 阅读(278) 评论(0) 推荐(0) 编辑