摘要: 问题: 给定一颗BST(二叉搜索树),其中存在两个节点顺序颠倒,请找出他们,并恢复正确次序。 Example 1: Input: root = [1,3,null,null,2] Output: [3,1,null,null,2] Explanation: 3 cannot be a left ch 阅读全文
posted @ 2020-12-05 12:20 habibah_chang 阅读(149) 评论(0) 推荐(0) 编辑