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

Method get_data

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

Source from the content-addressed store, hash-verified

48 self.height: int = 1
49
50 def get_data(self) -> Any:
51 return self.data
52
53 def get_left(self) -> MyNode | None:
54 return self.left

Callers 7

right_rotationFunction · 0.80
left_rotationFunction · 0.80
insert_nodeFunction · 0.80
get_right_mostFunction · 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