chenxi16

导航

2020年4月2日 #

数据结构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 阅读(157) 评论(0) 推荐(0) 编辑