Python Program To Implement Binary Search Tree | Program 7 | Min and Max Key

  Рет қаралды 15,405

Amulya's Academy

Amulya's Academy

Күн бұрын

Пікірлер: 22
@pratikmahore852
@pratikmahore852 2 жыл бұрын
Via recursion 👇🏻 def min_node(self): If self.lchild: self.lchild.min_node() elif self.lchild is None: print("min node :" ,self.key)
@rohitkamble8515
@rohitkamble8515 2 жыл бұрын
Thank you so much for wonderful content.😎👌👌🙌🙌🙌
@shaimaagoda2954
@shaimaagoda2954 Жыл бұрын
you are amazing 🤩
@janardhan6752
@janardhan6752 2 жыл бұрын
Amulya if we want to get the position of an node while searching ,is it possible ? Because In the previous code ,we could only know the key is present in the tree or not ,but we couldn't know the position of the key
@ramakrishna4383
@ramakrishna4383 3 жыл бұрын
This will find also by using recursive function na madam
@AmulsAcademy
@AmulsAcademy 3 жыл бұрын
Yes 😊
@nandeesh5820
@nandeesh5820 2 жыл бұрын
mam we need to apply break statement to terminate the while loop def min(self): current=self while current.left: current=self.left break print('the min is: ',current.root) def max(self): current=self while current.right: current=self.right break print('the max is:',current.root)
@shubhankarsingh4065
@shubhankarsingh4065 3 жыл бұрын
thanks
@AmulsAcademy
@AmulsAcademy 3 жыл бұрын
Pleasure 😊
@prathameshmore5262
@prathameshmore5262 2 жыл бұрын
why we didnt write current = self.key except self
@zainabbohra2915
@zainabbohra2915 3 жыл бұрын
mam can you please implement it and explain it?please mam if possible , and mam you are also not uploading any videos
@AmulsAcademy
@AmulsAcademy 3 жыл бұрын
Will try 😊
@reddyraviteja7702
@reddyraviteja7702 3 жыл бұрын
def min_node(self): current=self while current.lchild: current=self.lchild print("The min value in the tree is",current.key) def max_node(self): current=self while current.rchild: current=self.rchild print("The max value in the tree is",current.key) infinite loop coming is mam
@RohitSingh-ko2cz
@RohitSingh-ko2cz 2 жыл бұрын
you need to use current.lchild in 4th line instead of self.lchild becz self value in not changing, same for max_node function.
@nandeesh5820
@nandeesh5820 2 жыл бұрын
def min(self): current=self while current.left: current=self.left break print('the min is: ',current.root) def max(self): current=self while current.right: current=self.right break print('the max is:',current.root) we need to apply break statement to terminate te while loop
@selvanm2872
@selvanm2872 3 жыл бұрын
👍
@AmulsAcademy
@AmulsAcademy 3 жыл бұрын
Thank you 😊
@datafuse32
@datafuse32 3 жыл бұрын
if self.key is None: print("Tree is empty") return if self.lchild: node=self.lchild while node.lchild : node = node.lchild print(node.key,"is the min number") else: print(self.key,"is the min key")
@nagendrabommireddi8437
@nagendrabommireddi8437 2 жыл бұрын
what will happen when tree is empty
@umairbijapure7584
@umairbijapure7584 3 жыл бұрын
Is there any Trie structure video??
@charchitmangal
@charchitmangal 2 жыл бұрын
def minimum(self): if self.lchild==None: return self.key else: self.lchild.minimum() def maximum(self): if self.rchild==None: return self.key else: self.rchild.maximum()
@charchitmangal
@charchitmangal 2 жыл бұрын
mam i have written this code!
Introduction to Binary Heap Data Structure | Heap Tree
7:19
Amulya's Academy
Рет қаралды 24 М.
Мясо вегана? 🧐 @Whatthefshow
01:01
История одного вокалиста
Рет қаралды 7 МЛН
The evil clown plays a prank on the angel
00:39
超人夫妇
Рет қаралды 53 МЛН
Quando A Diferença De Altura É Muito Grande 😲😂
00:12
Mari Maria
Рет қаралды 45 МЛН
Python Program To Implement Binary Search Tree | Program 2 | Insertion
18:28
Understanding B-Trees: The Data Structure Behind Modern Databases
12:39
Binary Tree Maximum Path Sum - DFS - Leetcode 124 - Python
15:19
Binary Trees in Python: Introduction and Traversal Algorithms
28:40
LucidProgramming
Рет қаралды 215 М.
This Is Why Python Data Classes Are Awesome
22:19
ArjanCodes
Рет қаралды 821 М.
Insert into a Binary Search Tree - Leetcode 701 - Python
9:48
NeetCodeIO
Рет қаралды 16 М.
Мясо вегана? 🧐 @Whatthefshow
01:01
История одного вокалиста
Рет қаралды 7 МЛН