#14069. [GESP202609 六级 C++] 第 20 题

[GESP202609 六级 C++] 第 20 题

对任意一棵二叉搜索树执行中序遍历,得到的关键字序列一定是非递减的。

void inorder(TreeNode *root) {
  if (!root)
     return;
  inorder(root->left);
  cout << root->val << " ";
  inorder(root->right);
}

{{ select(1) }}

  • 正确
  • 错误