Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
1
class
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
main
Function · 0.70
Tested by
no test coverage detected