二叉树中第 K小的元素

Posted shinered

tags:

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

给定一个二叉搜索树,编写一个函数 kthSmallest 来查找其中第 k 个最小的元素。

说明:
你可以假设 k 总是有效的,1 ≤ k ≤ 二叉搜索树元素个数。

思路: 二叉搜索树因其有序,故采用中序遍历,可以得到第K小的元素。

/**
 * Definition for a binary tree node.
 * struct TreeNode 
 *     int val;
 *     TreeNode *left;
 *     TreeNode *right;
 *     TreeNode(int x) : val(x), left(NULL), right(NULL) 
 * ;
 */
class Solution 
public:
    int kthSmallest(TreeNode* root, int k) 
        int index = k;
        int kth = 0;
        TreeNode* find = findKth(root, index, kth);
        if(find) return find->val;
        return -1;
    
    TreeNode* findKth(TreeNode* root, int index, int &k)
        if(root == NULL) 
            return NULL;
        
        //左子树<根节点<右子树
        TreeNode* left = findKth(root->left,index, k);
        if(left) return left;
        k = k+1;
        if(k == index)  
           // cout << root->val << ",";
            return root;
         
        TreeNode* right = findKth(root->right, index, k);
        if(right) return right;
        else return NULL;        
        //return right? right:left;
    
        
    
;

 

以上是关于二叉树中第 K小的元素的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode233. 数字1的个数(数位dp)/1583. 统计不开心的朋友(模拟)/112. 路径总和 / 230. 二叉搜索树中第K小的元素 /968. 监控二叉树(树形dp)

二叉树----打印二叉树中第K层的第M个节点,非递归算法

树相关

二叉树中的查找操作(按值查找按位查找)

力扣671. 二叉树中第二小的节点

671. 二叉树中第二小的节点