1. 首页
  2. 数据库
  3. 其它
  4. [UVA] Tree

[UVA] Tree

上传者: 2021-01-15 15:41:26上传 PDF文件 15.87KB 热度 22次
题目: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
用户评论