摘要: ###定义 typedef struct AVLNode* Position; typedef Position AVLTree; /* AVL树类型 */ struct AVLNode { ElementType Data; /* 结点数据 */ AVLTree Left; /* 指向左子树 */ 阅读全文
posted @ 2020-10-27 20:05 与谁 阅读(184) 评论(0) 推荐(0) 编辑