平衡二叉树的创建(AVL树)

平衡二叉树的创建,在二叉树搜索中具备重要意义,因此今天来记录一下AVL树的创建。c++ #include <bits/stdc++.h> using namespace std; #define OK 1 #define ERROR 0 #define TRUE 1 #define FALSE 0 #define MAXSIZE 100 typedef struct BiTNode { in
相关文章
相关标签/搜索