mirror of
https://github.com/krahets/hello-algo.git
synced 2024-12-24 04:16:29 +08:00
parent
5849ae4ada
commit
0c60037e56
1 changed files with 1 additions and 1 deletions
|
@ -180,7 +180,7 @@ AVL 树既是二叉搜索树,也是平衡二叉树,同时满足这两类二
|
||||||
|
|
||||||
```c title=""
|
```c title=""
|
||||||
/* AVL 树节点结构体 */
|
/* AVL 树节点结构体 */
|
||||||
TreeNode struct TreeNode {
|
typedef struct TreeNode {
|
||||||
int val;
|
int val;
|
||||||
int height;
|
int height;
|
||||||
struct TreeNode *left;
|
struct TreeNode *left;
|
||||||
|
|
Loading…
Reference in a new issue