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

Method getright

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

Source from the content-addressed store, hash-verified

36 def getleft(self):
37 return self.left
38 def getright(self):
39 return self.right
40 def getheight(self):
41 return self.height
42 def setdata(self,data):

Callers 7

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

Calls

no outgoing calls

Tested by

no test coverage detected