LeetCode 501. 二叉搜索树中的众数

Posted 数据结构和算法

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode 501. 二叉搜索树中的众数相关的知识,希望对你有一定的参考价值。

在这里插入图片描述

想看更多算法题,可以扫描上方二维码关注我微信公众号“数据结构和算法”,截止到目前我已经在公众号中更新了500多道算法题,其中部分已经整理成了pdf文档,截止到目前总共有1000多页(并且还会不断的增加),可以在公众号中回复关键字“pdf”即可下载。

在这里插入图片描述


二叉树的中序遍历解决

在这里插入图片描述

public void inOrderTraversal(TreeNode node) {
    if (node == null)
        return;
    inOrderTraversal(node.left);
    System.out.println(node.val);
    inOrderTraversal(node.right);
}

我们来对他进行改造一下

List<Integer> mList = new ArrayList<>();
int curent = 0;//表示当前节点的值
int count = 0;//和当前节点值相同的节点数量
int maxCount = 0;//最大的重复数量

public int[] findMode(TreeNode root) {
    inOrderTraversal(root);
    int[] res = new int[mList.size()];
    //把集合list转化为数组
    for (int i = 0; i < mList.size(); i++) {
        res[i] = mList.get(i);
    }
    return res;
}

//递归方式
public void inOrderTraversal(TreeNode node) {
    //终止条件判断
    if (node == null)
        return;
    //遍历左子树
    inOrderTraversal(node.left);

    //下面是对当前节点的一些逻辑操作
    int nodeValue = node.val;
    if (nodeValue == curent) {
        //如果节点值等于curent,count就加1
        count++;
    } else {
        //否则,就表示遇到了一个新的值,curent和count都要
        //重新赋值
        curent = nodeValue;
        count = 1;
    }
    if (count == maxCount) {
        //如果count == maxCount,就把当前节点加入到集合中
        mList.add(nodeValue);
    } else if (count > maxCount) {
        //否则,当前节点的值重复量是最多的,直接把list清空,然后
        //把当前节点的值加入到集合中
        mList.clear();
        mList.add(nodeValue);
        maxCount = count;
    }

    //遍历右子树
    inOrderTraversal(node.right);
}

之前在讲到373,数据结构-6,树的时候,提到二叉树中序遍历的非递归写法

public void inOrderTraversal(TreeNode tree) {
    Stack<TreeNode> stack = new Stack<>();
    while (tree != null || !stack.isEmpty()) {
        while (tree != null) {
            stack.push(tree);
            tree = tree.left;
        }
        if (!stack.isEmpty()) {
            tree = stack.pop();
            System.out.println(tree.val);
            tree = tree.right;
        }
    }
}

再来改造一下

List<Integer> mList = new ArrayList<>();
int curent = 0;
int count = 0;
int maxCount = 0;

public int[] findMode(TreeNode root) {
    inOrderTraversal(root);
    int[] res = new int[mList.size()];
    //把集合list转化为数组
    for (int i = 0; i < mList.size(); i++) {
        res[i] = mList.get(i);
    }
    return res;
}

//非递归方式
public void inOrderTraversal(TreeNode tree) {
    Stack<TreeNode> stack = new Stack<>();
    while (tree != null || !stack.isEmpty()) {
        while (tree != null) {
            stack.push(tree);
            tree = tree.left;
        }
        if (!stack.isEmpty()) {
            tree = stack.pop();
            int nodeValue = tree.val;
            if (nodeValue == curent) {
                //如果节点值等于curent,count就加1
                count++;
            } else {
                //否则,就表示遇到了一个新的值,curent和count都要
                //重新赋值
                curent = nodeValue;
                count = 1;
            }
            if (count == maxCount) {
                //如果count == maxCount,就把当前节点加入到集合中
                mList.add(nodeValue);
            } else if (count > maxCount) {
                //否则,当前节点的值重复量是最多的,直接把list清空,然后
                //把当前节点的值加入到集合中
                mList.clear();
                mList.add(nodeValue);
                maxCount = count;
            }
            tree = tree.right;
        }
    }
}

总结

做这题首先要搞懂二叉搜索树的中序遍历结果是排序的,这题就容易解了。除了常规的二叉树的中序遍历,我们还可以使用二叉树的Morris中序遍历,具体可以看下《488,二叉树的Morris中序和前序遍历》

以上是关于LeetCode 501. 二叉搜索树中的众数的主要内容,如果未能解决你的问题,请参考以下文章

二叉树二叉搜索树中的众数(leetcode501)

LeetCode 501. 二叉搜索树中的众数

leetcode简单501二叉搜索树中的众数

501. 二叉搜索树中的众数

501-二叉搜索树中的众数

501. 二叉搜索树中的众数