Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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_rotation
Function · 0.80
left_rotation
Function · 0.80
insert_node
Function · 0.80
get_right_most
Function · 0.80
get_left_most
Function · 0.80
del_node
Function · 0.80
__str__
Method · 0.80
Calls
no outgoing calls
Tested by
no test coverage detected