数据结构1 - 04-树5 Root of AVL Tree
摘要:
1 #include<stdio.h> 2 #include<math.h> 3 #define MAXN 1000 4 struct node{ 5 int left,right,data,height,parent; 6 }; 7 struct node a[MAXN]; 8 int n; 9 阅读全文
posted @ 2020-04-02 19:53 chenxi16 阅读(163) 评论(0) 推荐(0)
浙公网安备 33010602011771号