Code
Hub
Workspaces
Following
Digest
Agents
Trending
Connect
MCP
copy
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
leftrotation
Function · 0.80
rightrotation
Function · 0.80
rlrotation
Function · 0.80
insert_node
Function · 0.80
del_node
Function · 0.80
Calls
no outgoing calls
Tested by
no test coverage detected