`
hcx2013
  • 浏览: 90345 次
社区版块
存档分类
最新评论

Kth Smallest Element in a BST

 
阅读更多

Given a binary search tree, write a function kthSmallest to find the kth smallest element in it.

 

/**
 * Definition for a binary tree node.
 * public class TreeNode {
 *     int val;
 *     TreeNode left;
 *     TreeNode right;
 *     TreeNode(int x) { val = x; }
 * }
 */
public class Solution {
    public int kthSmallest(TreeNode root, int k) {
        if (root != null) {
        	Stack<TreeNode> stack = new Stack<>();
        	while (!stack.isEmpty() || root != null) {
        		if (root != null) {
        			stack.push(root);
        			root = root.left;
        		} else {
        			root = stack.pop();
        			if (--k == 0) {
        				return root.val;
        			}
        			root = root.right;
        		}
        	}
        }
        return 0;
    }
}

 

分享到:
评论

相关推荐

    java-leetcode题解之Kth Smallest Element in a BST.java

    在Java语言实现的LeetCode题解中,"Kth Smallest Element in a BST"这一问题尤为引人注目,它涉及到了二叉树的遍历以及对树的特性进行深度利用。 二叉搜索树具有独特的特性:对于任意节点,其左子树中的所有元素都...

    c语言-leetcode题解之0230-kth-smallest-element-in-a-bst

    c c语言_leetcode题解之0230_kth_smallest_element_in_a_bst

    leetcode1124java-arts:艺术

    Smallest Element in a BST Review:高效的一些建议 Tip:Elastic Search VS Solr Share:人的一生两个最大的财富是:你的才华和你的时间 Algorithm:LC 763. Partition Labels Review:Signs that You are a Bad ...

    lrucacheleetcode-Coding-Interview:编程面试

    lru cache leetcode Coding-Interview A repo for popular coding interview ...In ...In ...In ...二叉树查找/BST查找 Closest Binary Search Tree Value 二叉树查找/二叉树第K个 Kth Smallest Element In A

    Selective_Leetcode_solutions

    5. 题目230 - "Kth Smallest Element in a BST" 在二叉搜索树中找到第k小的元素,可以使用中序遍历。Java中,可以定义一个迭代或递归的中序遍历函数,同时维护一个计数器,当计数器等于k时返回当前元素。 6. 题目6...

    leetcodetreenode-leetcode-setup-local-bot:Leetcodebot,一个C++编码库,它与流行的算法一

    Kth_Smallest_Element_in_a_BST”。 现在您可以打开文件“/CompetitiveProgramming/leetcode/{Current_Date}/{Problem_Name}/main.cpp”。 它将设置编码库。 - - 例子 - - 要直接读取树输入(由 leetcode 提供):...

    LeetCode最全代码

    421 | [Maximum XOR of Two Numbers in an Array](https://leetcode.com/problems/maximum-xor-of-two-numbers-in-an-array/) | [C++](./C++/maximum-xor-of-two-numbers-in-an-array.cpp) [Python](./Python/...

Global site tag (gtag.js) - Google Analytics