码迷,mamicode.com
首页 > 其他好文 > 详细

二叉搜索树中第K小的元素

时间:2018-07-17 18:14:56      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:sea   for   tree   null   pre   ret   输出   第k小   return   

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

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

示例 1:

输入: root = [3,1,4,null,2], k = 1
   3
  /  1   4
     2
输出: 1

示例 2:

输入: root = [5,3,6,2,4,null,null,1], k = 3
       5
      /      3   6
    /    2   4
  /
 1
输出: 3

一个中序遍历的搜索,递归或者栈。

/**
 * Definition for a binary tree node.
 * struct TreeNode {
 *     int val;
 *     struct TreeNode *left;
 *     struct TreeNode *right;
 * };
 */
void inorderSearch(struct TreeNode* root,int* count,int k,int* target)
{
    if(*count>k)
        return;
    if(root->left)
        inorderSearch(root->left,count,k,target);
    (*count)++;
    if(*count==k)
    {
        *target=root->val;
        return ;
    }
    if(root->right)
        inorderSearch(root->right,count,k,target);
        
}
int kthSmallest(struct TreeNode* root, int k) {
    int target=0;
    int count=0;
    inorderSearch(root,&count,k,&target);
    return target;
}

 

二叉搜索树中第K小的元素

标签:sea   for   tree   null   pre   ret   输出   第k小   return   

原文地址:https://www.cnblogs.com/onlyandonly/p/9324363.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!