- AVLTree<E extends java.lang.Comparable<E>> - Class in it.unicam.cs.asdl1819.miniproject2
-
Un AVLTree è un albero binario di ricerca che si mantiene sempre bilanciato.
- AVLTree() - Constructor for class it.unicam.cs.asdl1819.miniproject2.AVLTree
-
Costruisce un AVLTree vuoto.
- AVLTree(E) - Constructor for class it.unicam.cs.asdl1819.miniproject2.AVLTree
-
Costruisce un AVLTree che consiste solo di un nodo radice.
- AVLTree.AVLTreeNode - Class in it.unicam.cs.asdl1819.miniproject2
-
Gli elementi di questa classe sono i nodi di un AVLTree, che è la classe
"involucro" della struttura dati.
- AVLTreeNode(E) - Constructor for class it.unicam.cs.asdl1819.miniproject2.AVLTree.AVLTreeNode
-
Create an AVLTreeNode as a root leaf
- AVLTreeNode(E, AVLTree<E>.AVLTreeNode) - Constructor for class it.unicam.cs.asdl1819.miniproject2.AVLTree.AVLTreeNode
-
Create an AVLTreeNode node containing one element to be considered
child of the given parent.
- AVLTreeSort<E extends java.lang.Comparable<E>> - Class in it.unicam.cs.asdl1819.miniproject2
-
Algoritmo di ordinamento che usa un albero AVL con molteplicità per ordinare
una lista di elementi.
- AVLTreeSort() - Constructor for class it.unicam.cs.asdl1819.miniproject2.AVLTreeSort
-