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

Method get_height

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

Source from the content-addressed store, hash-verified

57 return self.right
58
59 def get_height(self) -> int:
60 return self.height
61
62 def set_data(self, data: Any) -> None:
63 self.data = data

Callers 1

get_heightFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected