MCPcopy Index your code
hub / github.com/subbarayudu-j/TheAlgorithms-Python / getdata

Method getdata

data_structures/binary tree/AVLtree.py:34–35  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

32 self.right = None
33 self.height = 1
34 def getdata(self):
35 return self.data
36 def getleft(self):
37 return self.left
38 def getright(self):

Callers 7

leftrotationFunction · 0.80
rightrotationFunction · 0.80
insert_nodeFunction · 0.80
getRightMostFunction · 0.80
getLeftMostFunction · 0.80
del_nodeFunction · 0.80
traversaleMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected