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

Method __init__

data_structures/avl.py:9–14  ·  view source on GitHub ↗
(self, label)

Source from the content-addressed store, hash-verified

7class Node:
8
9 def __init__(self, label):
10 self.label = label
11 self._parent = None
12 self._left = None
13 self._right = None
14 self.height = 0
15
16 @property
17 def right(self):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected