Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
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
12
class
Node:
13
def
__init__(self, data):
14
self.data = data
15
self.left = None
16
self.right = None
17
18
19
class
BST:
Callers
2
insert
Method · 0.70
recur_insert
Method · 0.70
Calls
no outgoing calls
Tested by
no test coverage detected