forked from hofmannol/AlgoDatSoSe25
13 lines
290 B
Python
13 lines
290 B
Python
from utils.memory_array import MemoryArray
|
|
from vorlesung.L05_binaere_baeume.avl_tree import AVLTree
|
|
|
|
if __name__ == "__main__":
|
|
a = MemoryArray.create_array_from_file("data/seq0.txt")
|
|
tree = AVLTree()
|
|
|
|
for cell in a:
|
|
tree.insert(int(cell))
|
|
|
|
tree.graph_traversal()
|
|
|