思路如下:判断是否是搜索树使用了递归而不是中序遍历的思路。判断是否是完全二叉树简单的用个层序遍历即可。 bool IsSearchTree(TreeNode* root,int min,int max) { if(root==NULL) &nb...