MCPcopy Create free account
hub / github.com/ndleah/python-mini-project / find

Method find

Binary_tree/tree.py:32–36  ·  view source on GitHub ↗
(self, data)

Source from the content-addressed store, hash-verified

30
31 # Method for find the data
32 def find(self, data):
33 if self.root is not None:
34 return self._find(data, self.root)
35 else:
36 return None
37
38 def _find(self, data, node):
39 if data == node.data:

Callers 5

scraping.pyFile · 0.80
main.jsFile · 0.80
addressValFunction · 0.80
scraping.pyFile · 0.80

Calls 1

_findMethod · 0.95

Tested by

no test coverage detected