MCPcopy Index your code
hub / github.com/ndleah/python-mini-project / remove

Method remove

Binary_Search_Tree/bst.py:83–86  ·  view source on GitHub ↗
(self,root,data)

Source from the content-addressed store, hash-verified

81 return self.restructdata(root.right)
82
83 def remove(self,root,data):
84 if root == None:
85 return "deletion failed: deleting from an empty tree"
86 return self.removeHelper(root,data)
87
88
89

Callers 9

Download Audio.pyFile · 0.80
egg_droppedFunction · 0.80
catch_checkFunction · 0.80
getValidMovesMethod · 0.80
pong.pyFile · 0.80
mainFunction · 0.80
ctFunction · 0.80
main.pyFile · 0.80

Calls 1

removeHelperMethod · 0.95

Tested by

no test coverage detected