摘要: 本题要求实现函数,判断给定二叉树是否二叉搜索树。 函数接口定义: bool IsBST ( BinTree T ); 其中BinTree结构定义如下: typedef struct TNode *Position; typedef Position BinTree; struct TNode{ El 阅读全文
posted @ 2022-10-20 19:33 Linkway 阅读(65) 评论(0) 推荐(0)