摘要: typedef struct node *pos; typedef struct node *AvlT; struct node { int val; AvlT l; AvlT r; int h; }; static int Height(pos p) { if (!p) return -1; re 阅读全文
posted @ 2020-11-01 21:49 ctxcc 阅读(118) 评论(0) 推荐(0)