[C++] 백준 1991 트리 순회
·
Algorithm/Baekjoon
#include #include #include using namespace std; int n; map nodes;//노드들을 받아온다. map visited;//노드를 갔나의 표시 void FirstCycle(char curr); void MidCycle(char curr); void EndCycle(char curr); void memsetting(int n); int main() { ios_base::sync_with_stdio(0); cin.tie(0); cin >> n; for (int i = 0; i > temp1 >> temp2 >> temp3; nodes[temp1].first = temp2; nodes[temp..