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

Method insert

data_structures/binary tree/AVLtree.py:195–197  ·  view source on GitHub ↗
(self,data)

Source from the content-addressed store, hash-verified

193# print("yyy")
194 return getheight(self.root)
195 def insert(self,data):
196 print("insert:"+str(data))
197 self.root = insert_node(self.root,data)
198
199 def del_node(self,data):
200 print("delete:"+str(data))

Callers 1

AVLtree.pyFile · 0.45

Calls 1

insert_nodeFunction · 0.85

Tested by

no test coverage detected