MCPcopy
hub / github.com/geekcomputers/Python / Node

Class Node

binary_search_trees/tree_node.py:5–9  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3
4# Node class for binary tree
5class Node:
6 def __init__(self, data: int) -> None:
7 self.data: int = data
8 self.left: Optional[Node] = None
9 self.right: Optional[Node] = None

Callers 1

insertFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected