摘要: 1 #include<bits/stdc++.h> 2 using namespace std; 3 const int MAXN=1024; 4 struct node{ 5 int val; // val:该节点储存的数值 6 int lch, rch; // lch: 左子树根节点编号,rch 阅读全文
posted @ 2020-12-22 17:51 TFLSNOI 阅读(182) 评论(0) 推荐(1) 编辑