LeetCode|LeetCode 每日一题 [68] 二叉搜索树的第k大节点
LeetCode 二叉搜索树的第k大节点 [简单]
给定一棵二叉搜索树,请找出其中第k大的节点
来源:力扣(LeetCode)示例 1:
链接:https://leetcode-cn.com/problems/er-cha-sou-suo-shu-de-di-kda-jie-dian-lcof
输入: root = [3,1,4,null,2], k = 1示例 2:
3
/ \
1 4
\
2
输出: 4
输入: root = [5,3,6,2,4,null,null,1], k = 3限制:
5
/ \
3 6
/ \
2 4
/
1
输出: 4
1 ≤ k ≤ 二叉搜索树元素个数题目分析
解法1 【LeetCode|LeetCode 每日一题 [68] 二叉搜索树的第k大节点】搜索二叉树,中序遍历为正序,因为需要寻找的是第k大的,也就是中序倒序的第k个,中序倒序的遍历为 右 中 左代码实现
public class KthLargest {
private static int res, k;
public int kthLargest(TreeNode root, int k) {
KthLargest.k = k;
dfs(root);
return res;
}private static void dfs(TreeNode root) {
if (root == null) {
return;
}
dfs(root.left);
if (k == 0) {
return;
}
if (--k == 0) {
res = root.val;
}
dfs(root.left);
}
}
推荐阅读
- 每日一话(49)——一位清华教授在朋友圈给大学生的9条建议
- 【Leetcode/Python】001-Two|【Leetcode/Python】001-Two Sum
- leetcode|leetcode 92. 反转链表 II
- #2018.4.12#每日一问#+简宁+D03+我是怎样做读书笔记的
- 每日微习惯诞生|每日微习惯诞生 16/100
- 二叉树路径节点关键值和等于目标值(LeetCode--112&LeetCode--113)
- --木木--|--木木-- 第二课作业#翼丰会(每日一淘6+1实战裂变被动引流# 6+1模式)
- LeetCode算法题-11.|LeetCode算法题-11. 盛最多水的容器(Swift)
- 03月30日|03月30日|Day92|每日复盘
- [白雪扇贝每日一句特训班]week5复盘——相信持续的力量