摘要:
安装 sudo apt-get install doxygen-latex doxygen-doc doxygen-gui graphviz doxygen启动 doxywizard 参考:windows下的doxygen界面的配置 其中要注意的是graphviz路径的配置:/usr/bin 阅读全文
摘要:
Dijkstra算法测试 #include <iostream> #include <vector> using namespace std; #define INF 99999999 vector<int> Dijkstra(vector<vector<int>>& graph, int star 阅读全文