[UVA] Tree

okyes71084 19 0 PDF 2021-01-15 15:01:26

题目:https://vjudge.net/problem/UVA-548 #include #include #include #include using namespace std; const int manx = 10000 + 5; int in_order[manx], post_order[manx], lch[manx], rch[manx]; int n; bool read_list(int *a) { string line; if (!getline(cin, line)) return false; stringstream ss(line); n = 0

用户评论
请输入评论内容
评分:
暂无评论