剑指 Offer 54. 二叉搜索树的第k大节点

剑指 Offer 54. 二叉搜索树的第k大节点

中序遍历

class Solution {
    int k, res;

    public int kthLargest(TreeNode root, int k) {
        this.k = k;
        dfs(root);
        return res;
    }

    void dfs(TreeNode root){
        if(root == null) return;
        dfs(root.right);

        k--;
        if(k == 0) res = root.val;

        dfs(root.left);
    }
}

你可能感兴趣的:(#,剑指offer,算法)