[LeetCode] 272. Closest Binary Search Tree Value II 最近的二叉搜索树的值 II
Given a non-empty binary search tree and a target value, find k values in the BST that are closest to the target.
Note:
- Given target value is a floating point.
- You may assume k is always valid, that is: k ≤ total nodes.
- You are guaranteed to have only one unique set of k values in the BST that are closest to the target.
Follow up:
Assume that the BST is balanced, could you solve it in less than O(n) runtime (where n = total nodes)?
Hint:
1. Consider implement these two helper functions:
i. getPredecessor(N), which returns the next smaller node to N.
ii. getSuccessor(N), which returns the next larger node to N.
2. Try to assume that each node has a parent pointer, it makes the problem much easier.
3. Without parent pointer we just need to keep track of the path from the root to the current node using a stack.
4. You would need two stacks to track the path in finding predecessor and successor node separately.
270. Closest Binary Search Tree Value 的拓展,270题只要找出离目标值最近的一个节点值,而这道题要找出离目标值最近的k个节点值。
解法1:Brute Force, 中序遍历或者其它遍历,同时维护一个大小为k的max heap。
Java:
- /**
- * Definition for a binary tree node.
- * public class TreeNode {
- * int val;
- * TreeNode left;
- * TreeNode right;
- * TreeNode(int x) { val = x; }
- * }
- */
- public class Solution {
- public List<Integer> closestKValues(TreeNode root, double target, int k) {
- LinkedList<Integer> res = new LinkedList<>();
- inOrderTraversal(root, target, k, res);
- return res;
- }
- private void inOrderTraversal(TreeNode root, double target, int k, LinkedList<Integer> res) {
- if (root == null) {
- return;
- }
- inOrderTraversal(root.left, target, k, res);
- if (res.size() < k) {
- res.add(root.val);
- } else if(res.size() == k) {
- if (Math.abs(res.getFirst() - target) > (Math.abs(root.val - target))) {
- res.removeFirst();
- res.addLast(root.val);
- } else {
- return;
- }
- }
- inOrderTraversal(root.right, target, k, res);
- }
- }
Java:
- /**
- * Definition for a binary tree node.
- * public class TreeNode {
- * int val;
- * TreeNode left;
- * TreeNode right;
- * TreeNode(int x) { val = x; }
- * }
- */
- public class Solution {
- private PriorityQueue<Integer> minPQ;
- private int count = 0;
- public List<Integer> closestKValues(TreeNode root, double target, int k) {
- minPQ = new PriorityQueue<Integer>(k);
- List<Integer> result = new ArrayList<Integer>();
- inorderTraverse(root, target, k);
- // Dump the pq into result list
- for (Integer elem : minPQ) {
- result.add(elem);
- }
- return result;
- }
- private void inorderTraverse(TreeNode root, double target, int k) {
- if (root == null) {
- return;
- }
- inorderTraverse(root.left, target, k);
- if (count < k) {
- minPQ.offer(root.val);
- } else {
- if (Math.abs((double) root.val - target) < Math.abs((double) minPQ.peek() - target)) {
- minPQ.poll();
- minPQ.offer(root.val);
- }
- }
- count++;
- inorderTraverse(root.right, target, k);
- }
- }
Java:
- /**
- * Definition for a binary tree node.
- * public class TreeNode {
- * int val;
- * TreeNode left;
- * TreeNode right;
- * TreeNode(int x) { val = x; }
- * }
- */
- public class Solution {
- public List<Integer> closestKValues(TreeNode root, double target, int k) {
- PriorityQueue<Double> maxHeap = new PriorityQueue<Double>(k, new Comparator<Double>() {
- @Override
- public int compare(Double x, Double y) {
- return (int)(y-x);
- }
- });
- Set<Integer> set = new HashSet<Integer>();
- rec(root, target, k, maxHeap, set);
- return new ArrayList<Integer>(set);
- }
- private void rec(TreeNode root, double target, int k, PriorityQueue<Double> maxHeap, Set<Integer> set) {
- if(root==null) return;
- double diff = Math.abs(root.val-target);
- if(maxHeap.size()<k) {
- maxHeap.offer(diff);
- set.add(root.val);
- } else if( diff < maxHeap.peek() ) {
- double x = maxHeap.poll();
- if(! set.remove((int)(target+x))) set.remove((int)(target-x));
- maxHeap.offer(diff);
- set.add(root.val);
- } else {
- if(root.val > target) rec(root.left, target, k, maxHeap,set);
- else rec(root.right, target, k, maxHeap, set);
- return;
- }
- rec(root.left, target, k, maxHeap, set);
- rec(root.right, target, k, maxHeap, set);
- }
- }
Java: A time linear solution, The time complexity would be O(k + (n - k) logk). Space complexity is O(k).
- /**
- * Definition for a binary tree node.
- * public class TreeNode {
- * int val;
- * TreeNode left;
- * TreeNode right;
- * TreeNode(int x) { val = x; }
- * }
- */
- public class Solution {
- public List<Integer> closestKValues(TreeNode root, double target, int k) {
- List<Integer> result = new ArrayList<>();
- if (root == null) {
- return result;
- }
- Stack<Integer> precedessor = new Stack<>();
- Stack<Integer> successor = new Stack<>();
- getPredecessor(root, target, precedessor);
- getSuccessor(root, target, successor);
- for (int i = 0; i < k; i++) {
- if (precedessor.isEmpty()) {
- result.add(successor.pop());
- } else if (successor.isEmpty()) {
- result.add(precedessor.pop());
- } else if (Math.abs((double) precedessor.peek() - target) < Math.abs((double) successor.peek() - target)) {
- result.add(precedessor.pop());
- } else {
- result.add(successor.pop());
- }
- }
- return result;
- }
- private void getPredecessor(TreeNode root, double target, Stack<Integer> precedessor) {
- if (root == null) {
- return;
- }
- getPredecessor(root.left, target, precedessor);
- if (root.val > target) {
- return;
- }
- precedessor.push(root.val);
- getPredecessor(root.right, target, precedessor);
- }
- private void getSuccessor(TreeNode root, double target, Stack<Integer> successor) {
- if (root == null) {
- return;
- }
- getSuccessor(root.right, target, successor);
- if (root.val <= target) {
- return;
- }
- successor.push(root.val);
- getSuccessor(root.left, target, successor);
- }
- }
C++:
- class Solution {
- public:
- vector<int> closestKValues(TreeNode* root, double target, int k) {
- vector<int> res;
- priority_queue<pair<double, int>> q;
- inorder(root, target, k, q);
- while (!q.empty()) {
- res.push_back(q.top().second);
- q.pop();
- }
- return res;
- }
- void inorder(TreeNode *root, double target, int k, priority_queue<pair<double, int>> &q) {
- if (!root) return;
- inorder(root->left, target, k, q);
- q.push({abs(root->val - target), root->val});
- if (q.size() > k) q.pop();
- inorder(root->right, target, k, q);
- }
- };
类似题目:
[LeetCode] 270. Closest Binary Search Tree Value 最近的二叉搜索树的值
All LeetCode Questions List 题目汇总
[LeetCode] 272. Closest Binary Search Tree Value II 最近的二叉搜索树的值 II的更多相关文章
- [LeetCode] 272. Closest Binary Search Tree Value II 最近的二分搜索树的值之二
Given a non-empty binary search tree and a target value, find k values in the BST that are closest t ...
- [LeetCode#272] Closest Binary Search Tree Value II
Problem: Given a non-empty binary search tree and a target value, find k values in the BST that are ...
- [leetcode]272. Closest Binary Search Tree Value II二叉搜索树中最近的值2
Given a non-empty binary search tree and a target value, find k values in the BST that are closest t ...
- [LeetCode] Convert Sorted List to Binary Search Tree 将有序链表转为二叉搜索树
Given a singly linked list where elements are sorted in ascending order, convert it to a height bala ...
- [LeetCode] Convert Sorted Array to Binary Search Tree 将有序数组转为二叉搜索树
Given an array where elements are sorted in ascending order, convert it to a height balanced BST. 这道 ...
- PAT A1099 Build A Binary Search Tree (30 分)——二叉搜索树,中序遍历,层序遍历
A Binary Search Tree (BST) is recursively defined as a binary tree which has the following propertie ...
- Convert Sorted List to Binary Search Tree——将链表转换为平衡二叉搜索树 &&convert-sorted-array-to-binary-search-tree——将数列转换为bst
Convert Sorted List to Binary Search Tree Given a singly linked list where elements are sorted in as ...
- 108 Convert Sorted Array to Binary Search Tree 将有序数组转换为二叉搜索树
将一个按照升序排列的有序数组,转换为一棵高度平衡二叉搜索树.此题中,一个高度平衡二叉树是指一个二叉树每个节点的左右两个子树的高度差的绝对值不超过1.示例:给定有序数组: [-10,-3,0,5,9], ...
- 41.Validate Binary Search Tree(判断是否为二叉搜索树)
Level: Medium 题目描述: Given a binary tree, determine if it is a valid binary search tree (BST). Assu ...
随机推荐
- windows pip使用国内源
在这里我使用清华源来做示范 win+R 打开用户目录%HOMEPATH%,在此目录下创建 pip 文件夹,在 pip 目录下创建 pip.ini 文件, 内容如下, 在pip文件夹里新建的pip.in ...
- oracle数据库应用总结
1------->>>>>>>>>>>>>>>>>>>>>>> ...
- CenterNet
Objects as Points anchor-free系列的目标检测算法,只检测目标中心位置,无需采用NMS 1.主干网络 采用Hourglass Networks [1](还有resnet18 ...
- php正则表达式修饰符详解
preg_match_all("/(.+)<\/form>/isU" , $string, $result); 这里/ 后面加了 3个修饰符 i 是 不区分大小写的匹配 ...
- 清楚webView的缓存
+(void)clearCache{ NSHTTPCookie *cookie; NSHTTPCookieStorage *storage = [NSHTTPCookieStorage s ...
- 使用RegisterPointerInputTarget时的一些注意事项
RegisterPointerInputTarget :允许调用者注册一个目标窗口,指定类型的所有指针输入都重定向到该窗口. 要使用它必须使 UIAccess = true,见下图 在设置完之后,需要 ...
- java作业利用递归解决问题
第一题 利用递归求组合数 设计思想 (1)首先根据公式求,利用递归完成阶乘函数的初始化,并且通过调用阶乘,实现公式计算 (2)递推方法,根据杨辉三角的特点,设置二维数组,从上到下依次保存杨辉三角所得数 ...
- 《SaltStack技术入门与实践》—— Grains
Grains 本章节参考<SaltStack技术入门与实践>,感谢该书作者: 刘继伟.沈灿.赵舜东 前几章我们已经了解SaltStack各个组件以及通过一个案例去熟悉它的各种应用,从这章开 ...
- 4.瀑布流js
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8&quo ...
- k8s实战--redis主从--guestbook
快速入门 实验:通过服务自动发现的redis主从 难点: 1,服务的自动发现,即如何确定coreDNS 已生效 2,redis的主从验证 遇到的问题: 1,Can't handle RDB forma ...