LCR 174. 寻找二叉搜索树中的目标节点

LCR 174. 寻找二叉搜索树中的目标节点_第1张图片

LCR 174. 寻找二叉搜索树中的目标节点_第2张图片

LCR 174. 寻找二叉搜索树中的目标节点_第3张图片 

解题思路:

二叉搜索树一般采用中序遍历(从小到大排列)。

LCR 174. 寻找二叉搜索树中的目标节点_第4张图片

class Solution {
    int res, cnt;
    public int findTargetNode(TreeNode root, int cnt) {
        this.cnt = cnt;
        dfs(root);
        return res;
    }
    void dfs(TreeNode root) {
        if(root == null) return;
        dfs(root.right);//右
        if(cnt == 0) return;
        if(cnt == 1) res = root.val;
        cnt--;//执行的语句放在终止条件之后
        dfs(root.left);//左
    }
}

你可能感兴趣的:(算法,java,数据结构,leetcode,深度优先)