MCPcopy Create free account
hub / github.com/subbarayudu-j/TheAlgorithms-Python / basic_binary_tree.py

File basic_binary_tree.py

binary_tree/basic_binary_tree.py:None–None  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1class Node: # This is the Class Node with constructor that contains data variable to type data and left,right pointers.
2 def __init__(self, data):
3 self.data = data
4 self.left = None

Callers

nothing calls this directly

Calls 1

mainFunction · 0.70

Tested by

no test coverage detected