avl-tree

Implement an AVL-balanced search tree dictionary that only stores values in leaves

Implement an AVL-balanced search tree dictionary that only stores values in leaves Question: There was a task in school: to implement a dictionary based on an AVL-balanced search tree, in which data is stored in leaves. I wrote a dictionary class: an AVL-balanced search tree in which values are stored in nodes. How can I …

Total answers: 1