Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/TheAlgorithms/Python
/ get_right
Method
get_right
data_structures/binary_tree/avl_tree.py:56–57 ·
view source on GitHub ↗
(self)
Source
from the content-addressed store, hash-verified
54
return
self.left
55
56
def
get_right(self) -> MyNode | None:
57
return
self.right
58
59
def
get_height(self) -> int:
60
return
self.height
Callers
7
right_rotation
Function · 0.80
left_rotation
Function · 0.80
rl_rotation
Function · 0.80
insert_node
Function · 0.80
get_right_most
Function · 0.80
del_node
Function · 0.80
__str__
Method · 0.80
Calls
no outgoing calls
Tested by
no test coverage detected