MCPcopy 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

1class TreeNode:
2 def __init__(self, data, left = None, right = None):
3 self.data = data
4 self.left = left
5 self.right = right
6def insert(temp,data):
7 que = []
8 que.append(temp)

Callers 2

insertFunction · 0.70
make_treeFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected