#80. [백준_C언어] 1260 : DFS와 BFS \ 그래프 이론
입력 코드 #include #define MAX_VERTICES 1001 int DFS_V[MAX_VERTICES] = { 0, }; //DFS를 실행하면서 방문한 정점을 표시하기 위한 배열 int BFS_V[MAX_VERTICES] = { 0, }; //BFS를 실행하면서 방문한 정점을 표시하기 위한 int graph[MAX_VERTICES][MAX_VERTICES] = { 0, }; int queue[MAX_VERTICES]; void dfs(int v, int vertices); void bfs(int v, int vertices); int main() { int vertices, edges, vertex, i, j; scanf("%d %d %d", &vertices, &edges, &vertex)..