2 Star 1 Fork 0

royce li/Leetcode_royce

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
findMode.py 814 Bytes
一键复制 编辑 原始数据 按行查看 历史
Royce Li 提交于 2021-05-10 16:39 . 2020/5/10 First Commit
class TreeNode:
def __init__(self, x):
self.val = x
self.left = None
self.right = None
class Solution:
def findMode(self, root: TreeNode):
base=0
count=0
maxcount=0
result=[]
def update(val):
nonlocal base,count,maxcount,result
if val!=base:
if count>maxcount:
result=[val]
elif count==maxcount:
result.append(val)
base=val
count=0
else:
count+=1
cur=root
while cur:
if cur.left is None:
update(cur.val)
cur=cur.right
continue
pre=cur
cur=cur.left
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/royce-li/leetcode_royce.git
git@gitee.com:royce-li/leetcode_royce.git
royce-li
leetcode_royce
Leetcode_royce
master

搜索帮助