摘要: #include<iostream> using namespace std; struct TreeNode { int father = 0; int level = 0; bool isLeaf = true; }; TreeNode t[100]; int main() { int N, M; while(cin>>N>>M) { //input int ID, K, child, num 阅读全文
posted @ 2019-08-07 20:16 Stoves 阅读(94) 评论(0) 推荐(0) 编辑