MCPcopy Create free account
hub / github.com/TheAlgorithms/Python / get_left

Method get_left

data_structures/binary_tree/avl_tree.py:53–54  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

51 return self.data
52
53 def get_left(self) -> MyNode | None:
54 return self.left
55
56 def get_right(self) -> MyNode | None:
57 return self.right

Callers 7

right_rotationFunction · 0.80
left_rotationFunction · 0.80
lr_rotationFunction · 0.80
insert_nodeFunction · 0.80
get_left_mostFunction · 0.80
del_nodeFunction · 0.80
__str__Method · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected