摘要: 1 #include<bits/stdc++.h> 2 using namespace std; 3 const int Max_N; 4 5 //1.树的节点定义 6 struct node{ 7 char val;//结点值 8 int lch, rch;//左右儿子(指向结构体数组下标) 9 阅读全文
posted @ 2020-12-14 14:07 TFLSNOI 阅读(166) 评论(1) 推荐(0) 编辑