樹的全部左節點小於根節點,全部右節點大於根節點(不是二叉搜索樹)

bool isDUI(TreeNode* root) { if (root == NULL) return true; bool l = false; bool r = false; l = isDUI(root->left); r = isDUI(root->right); bool isOK = true; if (root->left != NULL) isOK = i
相關文章
相關標籤/搜索