Code
Hub
Workspaces
Following
Digest
Agents
Trending
Connect
MCP
copy
Index your code
hub
/
github.com/BeeBombshell/Python-DSA
/ TreeNode
Class
TreeNode
Tree Data Structure/inorder_traversal.py:1–5 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
1
class
TreeNode:
2
def
__init__(self, data, left = None, right = None):
3
self.data = data
4
self.left = left
5
self.right = right
6
def
insert(temp,data):
7
que = []
8
que.append(temp)
Callers
2
insert
Function · 0.70
make_tree
Function · 0.70
Calls
no outgoing calls
Tested by
no test coverage detected