Created
July 3, 2019 05:13
-
-
Save surinoel/064672c8c85c767716a8b0cd1f6fb13e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
using namespace std; | |
struct tree { | |
int left, right; | |
tree() : left(-1), right(-1) {} | |
}; | |
tree tr[26]; | |
void preorder(int t) { | |
if (t == -1) { | |
return; | |
} | |
cout << (char)(t + 'A'); | |
preorder(tr[t].left); | |
preorder(tr[t].right); | |
} | |
void inorder(int t) { | |
if (t == -1) { | |
return; | |
} | |
inorder(tr[t].left); | |
cout << (char)(t + 'A'); | |
inorder(tr[t].right); | |
} | |
void postorder(int t) { | |
if (t == -1) { | |
return; | |
} | |
postorder(tr[t].left); | |
postorder(tr[t].right); | |
cout << (char)(t + 'A'); | |
} | |
int main(void) { | |
ios_base::sync_with_stdio(false); | |
cin.tie(nullptr); | |
int n; | |
cin >> n; | |
for (int i = 0; i < n; i++) { | |
char x, y, z; | |
cin >> x >> y >> z; | |
if (y == '.') tr[x - 'A'].left = -1; | |
else tr[x - 'A'].left = y - 'A'; | |
if (z == '.') tr[x - 'A'].right = -1; | |
else tr[x - 'A'].right = z - 'A'; | |
} | |
preorder(0); cout << '\n'; | |
inorder(0); cout << '\n'; | |
postorder(0); cout << '\n'; | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment