博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[LeetCode] Kth Smallest Element in a BST
阅读量:7137 次
发布时间:2019-06-28

本文共 1200 字,大约阅读时间需要 4 分钟。

Kth Smallest Element in a BST

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

Note: 

You may assume k is always valid, 1 ≤ k ≤ BST's total elements.

Follow up:

What if the BST is modified (insert/delete operations) often and you need to find the kth smallest frequently?

How would you optimize the kthSmallest routine?

解题思路:

这道题求的是二分查找树种第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 count = 0;        int result = 0;        inOrder(root, k, count, result);        return result;    }        void inOrder(TreeNode* root, int k, int& count, int& result){        if(root==NULL || count>=k){            return;        }        inOrder(root->left, k, count, result);        count++;        if(count==k){            result=root->val;        }        inOrder(root->right, k, count, result);    }};

转载于:https://www.cnblogs.com/yutingliuyl/p/6928798.html

你可能感兴趣的文章
A20总线
查看>>
Dart语言【009】DOM 操作
查看>>
Cocos2dx游戏开发系列笔记9:android手机上运行《战神传说》,并解决横竖屏即分辨率自适应...
查看>>
Django博客系统基础配置
查看>>
拖拽元素
查看>>
Ubuntu源码安装Openstack(三)
查看>>
docker两个容器之间连接---centos7容器+mysql容器
查看>>
VML/SVG开发配电站接线系统
查看>>
Oracle 数据库导入导出 dmp文件
查看>>
浅谈什么是云主机及其优势所在
查看>>
使用命令行工具对LSI阵列卡进行高效管理
查看>>
利用Java编码实现对oracle数据库的操作
查看>>
java字符串分割处理split及特殊符号
查看>>
远程连接mysql慢
查看>>
我的友情链接
查看>>
Linux学习进阶路线图
查看>>
Java多线程编程之限制优先级
查看>>
linux系统中如何进入退出vim编辑器使用方法
查看>>
8. 比权量力-chmod,chown,umask,lsattr,chattr命令
查看>>
Jenkins RCE CVE-2019-1003000 漏洞复现
查看>>