二叉搜索树中第k大元素_二叉搜索树中第K个最小元素

二叉搜索树中第k大元素

Problem statement:

问题陈述:

Find the k-th smallest element in a given binary search tree (BST).

在给定的二进制搜索树(BST)中找到第k个最小的元素。

Example:

例:

K-th smallest element in a Binary Search Tree
    K=4
Kth smallest element in the above binary tree is: 6
K=5
Kth smallest element in the above binary tree is: 7

Solution:

解:

One possible solution is to store the in-order traversal of the BST and printing the Kth element from the list. This can be done because in-order traversal of the BST produces a sorted list. But this solution leads to the overhead of additional storage which may not be entertained.

一种可能的解决方案是存储BST的有序遍历并从列表中打印第K个元素。 之所以可以这样做是因为BST的有序遍历会生成一个排序列表。 但是该解决方案导致可能无法解决的额外存储的开销。

So, we go for a much better solution where we don’t need any additional space.

因此,我们寻求了一个更好的解决方案,不需要任何额外的空间。

Algorithm:

算法:

//k, count both parameter are passed by reference
FUNCTION kthSmallest (root, int & k, int &count) 
1.  Base case
IF (root is NULL)
Return 0;
2. Carry out in-order traversal and keep checking for kth smallest element.
left=kthSmallest (root->left, k, count) //for left subtree
IF (left)
return left;
Increment count
IF (count==k)
return root->data; //kth smallest element
kthSmallest(root->right,k,count); //for right subtree
In the main function we call kthSmallest (root, k, 0) //count 0 initially

Example with explanation:

带有说明的示例:

Example | K-th smallest element in a Binary Search Tree
    In the main function we make call to kthSmallest(root, 4, 0)
-------------------------------------------------------------
KthSmallest (8, 4, 0)
8 not NULL
Left= KthSmallest(8->left , 4, 0);
Call to KthSmallest(3 , 4, 0): //8->left=3
-------------------------------------------------------------
KthSmallest (3, 4, 0)
3 not NULL
Left=KthSmallest(3->left , 4, 0);
Call to KthSmallest(1 , 4, 0): //3->left=1
-------------------------------------------------------------
KthSmallest (1, 4, 0)
1 not NULL
Left= KthSmallest(1->left , 4, 0);
Call to KthSmallest(NULL , 4, 0): //1->left=NULL
-------------------------------------------------------------
KthSmallest (NULL, 4, 0)
node is NULL
return 0;
-------------------------------------------------------------
Control back to KthSmallest (1, 4, 0):
Left=0
Increment count
Count=1;
K!=count
Call to kthSmallest(1->right, 4, 1) 
-------------------------------------------------------------
This is again NULL and control backs to KthSmallest (1, 4, 0)
Since end of function reached control backs to KthSmallest (3, 4, 0)
KthSmallest (3, 4, 0):
Increment count
Count=2 //it’s not 1 because count is passed by reference
K!=count
Call to KthSmallest(3->right, 4, 2)

So if you carry out similar way you will be able to find the k-th smallest one once k==count

因此,如果执行类似的方法,则一次k == count就能找到第k个最小的 整数

C++ implementation:

C ++实现:

#include <bits/stdc++.h>
using namespace std;
// tree node is defined
class Node{
public:
int data;
Node *left;
Node *right;
};
// creating new node
Node* newnode(int data)  
{ 
Node* node = (Node*)malloc(sizeof(Node)); 
node->data = data; 
node->left = NULL; 
node->right = NULL; 
return(node); 
} 
//finding kth smallest element
int kthSmallest(Node *root, int& k,int &count){ 
if(!root)
return 0;
int left=kthSmallest(root->left,k,count);	
if(left)
return left;
count=count+1;
if(count==k)
return root->data;
kthSmallest(root->right,k,count);
}
int main()
{
//building the bst
int count=0,k;
Node *root=newnode(8); 
root->left= newnode(3); 
root->right= newnode(10); 
root->right->right=newnode(14);
root->right->right->left=newnode(13);
root->left->left=newnode(1); 
root->left->right=newnode(6);
root->left->right->left=newnode(4);
root->left->right->right=newnode(7);
cout<<"input k\n";
cin>>k;
cout<<"Kth smallest element in the ";
cout<<"binary tree is :"<<endl; 
cout<< kthSmallest(root,k,count);
return 0;
}

Output

输出量

input k
4
Kth smallest element in the binary tree is :
6

翻译自: https://www.includehelp.com/icp/k-th-smallest-element-in-a-binary-search-tree.aspx

二叉搜索树中第k大元素

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/546324.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

阿里巴巴Java开发手册建议设置HashMap的初始容量,但设置多少合适呢?

作者 l Hollis来源 l Hollis&#xff08;ID&#xff1a;hollischuang&#xff09;集合是Java开发日常开发中经常会使用到的&#xff0c;而作为一种典型的K-V结构的数据结构&#xff0c;HashMap对于Java开发者一定不陌生。关于HashMap&#xff0c;很多人都对他有一些基本的了解&…

面向.Net程序员的dump分析

背景 Dump文件是进程的内存镜像。可以把程序的执行状态通过调试器保存到dump文件中。在 Windows 系统上&#xff0c; dump 文件分为内核 dump 和用户态 dump 两种。前者一般用来分析内核相关的问题&#xff0c;比如驱动程序&#xff1b;后者一般用来分析用户态程序的问题。 一般…

Linux Debian利用Dockefile将Python的py文件项目代码打包为Docker Podman镜像

1.创建PyCharm工程 使用PyCharm创建testHelloWorld工程&#xff0c;如下图所示&#xff1a; 2.选择本项目下的Python解释器 通过File -> Setting…选择解释器为本工程下的Python解释器。 【备注&#xff1a;一定要将项目python环境依赖存至本项目下&#xff0c;默认依赖本…

Java14发布!Switch竟如此简单?Lombok也不需要了?来用Idea搭建Java14吧!​

Java 14 在 2020.3.17 日发布正式版了&#xff0c;但现在很多公司还在使用 Java 7 或 Java 8&#xff0c;每当看到 Java 又发布新版本心里就慌得一匹。不过此版本并不是 LTS (长期支持版) 版本&#xff0c;所以不要慌&#xff0c;我们先来了解一下好了&#xff0c;等 LTS 版本发…

np.copysign_带有Python示例的math.copysign()方法

np.copysignPython math.copysign()方法 (Python math.copysign() method) math.copysign() method is a library method of math module, it is used to get a number with the sign of another number, it accepts two numbers (either integers or floats) and returns a fl…

PyCharm更换pip源为国内源、模块安装、PyCharm依赖包导入导出教程

一、更换pip为国内源 1.使用PyCharm创建一个工程 2.通过File -> Setting…选择解释器为本工程下的Python解释器。 3.单击下图中添加“”&#xff0c; 4.单击下图中的“Manage Repositories”按钮&#xff0c; 6.目前国内靠谱的 pip 镜像源有&#xff1a; - 清华&#xff1…

Java14来了!Switch竟如此简单?Lombok也不需要了?来用Idea搭建Java14吧!

Java 14 在 2020.3.17 日发布正式版了&#xff0c;但现在很多公司还在使用 Java 7 或 Java 8&#xff0c;每当看到 Java 又发布新版本心里就慌得一匹。不过此版本并不是 LTS (长期支持版) 版本&#xff0c;所以不要慌&#xff0c;我们先来了解一下好了&#xff0c;等 LTS 版本发…

在线批量压缩JPG图片-JpegMini

2019独角兽企业重金招聘Python工程师标准>>> 之前有推荐过一个在线批量压缩PNG图片的网站TinyPng&#xff0c;这儿小觉再次推荐一个同类网站&#xff0c;专门在线批量压缩JPG图片的JpegMini。 当然&#xff0c;大家或者会说现在很多工具或者网站都有提供在线批量压缩…

Python创建目录、判断路径是否为目录、打开文件夹操作

1.Python创建目录 # 导入os模块 import os # 判断一个目录path是否存在 os.path.exists(path) # 创建目录path os.mkdir(path) # 多层创建目录path os.makedirs(path) import ospath E:/test/if os.path.exists(path):pass else:os.mkdir(path)2.判断路径是否为目录 # 导入o…

## c 连接字符_用于字符比较的C#程序

## c 连接字符Input characters and compare them using C# program. 输入字符并使用C&#xff03;程序进行比较。 Prerequisite: Methods to input a single character in C# 先决条件&#xff1a; 在C&#xff03;中输入单个字符的方法 C&#xff03;代码比较两个字符 (C# …

《大厂内部资料》Redis 性能优化的 13 条军规!全网首发

这是我的第 43 篇原创文章。Redis 是基于单线程模型实现的&#xff0c;也就是 Redis 是使用一个线程来处理所有的客户端请求的&#xff0c;尽管 Redis 使用了非阻塞式 IO&#xff0c;并且对各种命令都做了优化&#xff08;大部分命令操作时间复杂度都是 O(1)&#xff09;&#…

联想Thinkpad P15V 安装Debian11后为wifi网卡安装驱动方法

Debian安装默认不带有非自由&#xff08;Non-Free&#xff09;软件&#xff0c;Thinkpad P15V 的wifi网卡没有开源驱动&#xff0c;所以一般情况下安装完Debian之后用不了wifi功能&#xff0c;貌似Ubuntu也是如此。 1.按照https://datutu.blog.csdn.net/article/details/12263…

math.trunc_带有Python示例的math.trunc()方法

math.truncPython math.trunc()方法 (Python math.trunc() method) math.trunc() method is a library method of math module, it is used to get the truncated integer value of a number, it accepts a number (either an integer or a float) and returns the real value …

Redis 性能优化的 13 条军规!史上最全

Redis 是基于单线程模型实现的&#xff0c;也就是 Redis 是使用一个线程来处理所有的客户端请求的&#xff0c;尽管 Redis 使用了非阻塞式 IO&#xff0c;并且对各种命令都做了优化&#xff08;大部分命令操作时间复杂度都是 O(1)&#xff09;&#xff0c;但由于 Redis 是单线程…

仿新浪微博滚动,无文字渐显功能

又一款仿新浪微博的文字滚动功能&#xff0c;去掉了滚动开始时候的文字渐显效果&#xff0c;似乎更明淅了&#xff0c;又一种风格的新浪微博大厅文字滚动&#xff0c;要的就复制代码吧。<!DOCTYPE HTML><html lang"en-US"><head><meta charset&…

Linux Debian11 Podman容器常用命令

Podman 是一个开源的容器运行时项目&#xff0c;可在大多数 Linux 平台上使用。Podman 提供与 Docker 非常相似的功能。它不需要在你的系统上运行任何守护进程&#xff0c;并且它也可以在没有 root 权限的情况下运行。 Podman 可以管理和运行任何符合 OCI&#xff08;Open Con…

js math.hypot_带有Python示例的math.hypot()方法

js math.hypotPython math.hypot()方法 (Python math.hypot() method) math.hypot() method is a library method of math module, it used to find the result of Euclidean norm, sqrt(x*x, y*y), it accepts two numbers and returns the result of Euclidean norm. math.hy…

惊呆了,竟然可以用这种方式秒建Redis集群?

前面我们讲了《Redis 性能优化的 13 条军规&#xff01;》&#xff0c;其中最重要的一条就是使用 Redis 的集群功能&#xff0c;那么本文我们就来看看&#xff0c;如何用 1s 钟的时间来创建一个 Redis 集群。 Redis Cluster 是 Redis 3.0 版本推出的 Redis 集群方案&#xff0…

创建索引的方法有两种

创建索引的方法有两种&#xff1a;创建表的同时创建索引&#xff0c;在已有表上创建索引。方法一&#xff1a;创建表的同时创建索引。使用这种方法创建索引时&#xff0c;可以一次性地创建一个表的多个索引&#xff08;例如唯一性索引、普通索引、复合索引等&#xff09;&#…

华为交换机S5735S-L24T4S-QA2无法telnet远程访问

以前都是按照https://datutu.blog.csdn.net/article/details/106810113方法配置不同网段通过静态路由实现互通,华为S5700交换机开启telnet远程指定IP登陆配置(强烈推荐),现在新买的华为数通智选交换机S5735S-L24T4S-QA2 也是按照这步骤配置,令人不解的是,竟然无法telnet访…