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

Method setright

data_structures/binary tree/AVLtree.py:48–50  ·  view source on GitHub ↗
(self,node)

Source from the content-addressed store, hash-verified

46 self.left = node
47 return
48 def setright(self,node):
49 self.right = node
50 return
51 def setheight(self,height):
52 self.height = height
53 return

Callers 5

leftrotationFunction · 0.80
rightrotationFunction · 0.80
lrrotationFunction · 0.80
insert_nodeFunction · 0.80
del_nodeFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected