
数据结构
鲜虾烧麦啵
这个作者很懒,什么都没留下…
展开
-
数据结构: 是否二叉搜索树
是否二叉搜索树 本题要求实现函数,判断给定二叉树是否二叉搜索树。 函数接口定义: bool IsBST ( BinTree T ); 其中BinTree结构定义如下: typedef struct TNode *Position; typedef Position BinTree; struct TNode{ ElementType Data; BinTree Left; ...原创 2019-05-18 22:10:59 · 511 阅读 · 0 评论 -
数据结构——顺序表操作集(C语言)
6-1 顺序表操作集 本题要求实现顺序表的操作集。 函数接口定义: List MakeEmpty(); Position Find( List L, ElementType X ); bool Insert( List L, ElementType X, Position P ); bool Delete( List L, Position P ); 其中List结构定义如下: typed...原创 2019-05-20 08:04:11 · 1530 阅读 · 0 评论