MCPcopy 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_rotationFunction · 0.80
left_rotationFunction · 0.80
rl_rotationFunction · 0.80
insert_nodeFunction · 0.80
get_right_mostFunction · 0.80
del_nodeFunction · 0.80
__str__Method · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected