LeetCode 501 二叉搜索树中的众数
程序员文章站
2022-03-03 11:01:35
...
给定一个有相同值的二叉搜索树(BST),找出 BST 中的所有众数(出现频率最高的元素)。
假定 BST 有如下定义:
结点左子树中所含结点的值小于等于当前结点的值
结点右子树中所含结点的值大于等于当前结点的值
左子树和右子树都是二叉搜索树
例如:
给定 BST [1,null,2,2],
1
\
2
/
2
返回[2].
提示:如果众数超过1个,不需考虑输出顺序
进阶:你可以不使用额外的空间吗?(假设由递归产生的隐式调用栈的开销不被计算在内)
解法一
中序遍历加数组中找众数的方法:
# Definition for a binary tree node.
# class TreeNode:
# def __init__(self, x):
# self.val = x
# self.left = None
# self.right = None
class Solution:
def findMode(self, root: TreeNode) -> List[int]:
if not root:
return []
res = self.inorder(root)
dict = {}
req = []
for re in res:
dict[re] = dict.get(re,0)+1
max_v = 0
for v in dict.values():
if v>max_v:
max_v = v
for k,v in dict.items():
if v == max_v:
req.append(k)
return req
def inorder(self, root):
if not root:
return []
return self.inorder(root.left)+[root.val]+self.inorder(root.right)
上一篇: Python多线程爬虫简单示例
下一篇: 角和矩形的交点
推荐阅读
-
LeetCode 426. 将二叉搜索树转化为排序的双向链表(BST中序循环遍历)
-
leetcode算法练习——不同的二叉搜索树
-
leetcode算法练习——不同的二叉搜索树
-
求二叉树中两个节点的最近公共祖先(三叉链,搜索树,普通二叉树)
-
leetcode 235. 二叉搜索树的最近公共祖先
-
【Leetcode刷题篇】leetcode235 二叉搜索树的最近公共祖先
-
LeetCode 235--二叉搜索树的最近公共祖先 ( Lowest Common Ancestor of a Binary Search Tree ) ( C语言版 )
-
Leetcode 1305:两棵二叉搜索树中的所有元素(超详细的解法!!!)
-
Leetcode 230.二叉搜索树中第k小的元素
-
LeetCode刷题实战96:不同的二叉搜索树