MCPcopy
hub / github.com/keon/algorithms / Node

Class Node

algorithms/data_structures/bst.py:12–16  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

10
11
12class Node:
13 def __init__(self, data):
14 self.data = data
15 self.left = None
16 self.right = None
17
18
19class BST:

Callers 2

insertMethod · 0.70
recur_insertMethod · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected