摘要: 二分查找 本题要求实现二分查找算法。 函数接口定义 Position BinarySearch( List L, ElementType X ); 其中List结构定义如下: typedef int Position; typedef struct LNode *List; struct LNode 阅读全文
posted @ 2022-04-20 20:31 里列昂遗失的记事本 阅读(21) 评论(0) 推荐(0) 编辑
摘要: 二叉树的遍历 本题要求给定二叉树的4种遍历 函数接口定义 void InorderTraversal( BinTree BT ); void PreorderTraversal( BinTree BT ); void PostorderTraversal( BinTree BT ); void Le 阅读全文
posted @ 2022-04-20 20:02 里列昂遗失的记事本 阅读(48) 评论(0) 推荐(0) 编辑