📄 test.cpp
字号:
#include <iostream>
using namespace std;
#include "Graph.h"
int main()
{
Graph g;
g.test();
cout<<"(x) means the function DFS() has observed the vertex x."<<endl
<<"As it has been visited before, DFS() ignore it"<<endl<<endl;
g.depthFirstSearch();
cout<<endl;
return 0;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -