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

Method setleft

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

Source from the content-addressed store, hash-verified

43 self.data = data
44 return
45 def setleft(self,node):
46 self.left = node
47 return
48 def setright(self,node):
49 self.right = node
50 return

Callers 5

leftrotationFunction · 0.80
rightrotationFunction · 0.80
rlrotationFunction · 0.80
insert_nodeFunction · 0.80
del_nodeFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected