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

Method __init__

data_structures/avl.py:51–53  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

49class AVL:
50
51 def __init__(self):
52 self.root = None
53 self.size = 0
54
55 def insert(self, value):
56 node = Node(value)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected