摘要: 思路:labuladong 二叉搜索树中序遍历为有序数组,利用该特性进行中序遍历,并在遍历时记录rank值,当rank等于k时输出val class Solution { public: int kthSmallest(TreeNode* root, int k) { traverse(root,k 阅读全文
posted @ 2022-02-09 15:06 鸭子船长 阅读(45) 评论(0) 推荐(0) 编辑