MCPcopy Index your code
hub / github.com/BeeBombshell/Python-DSA / binarytree.py

File binarytree.py

Tree Data Structure/binarytree.py:None–None  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1#class made for node of tree
2class Node:
3 def __init__(self, val):
4 self.l = None

Callers

nothing calls this directly

Calls 5

TreeClass · 0.85
addMethod · 0.80
printTreeMethod · 0.80
findMethod · 0.80
deleteTreeMethod · 0.80

Tested by

no test coverage detected