How do I fix this rotation method?
Public void rotSimplesEsq(AVL node)
{
AVL aux;
aux = node.right;
node.right = aux.left;
aux.left = node;
node = aux;
}
How do I fix this rotation method?
Public void rotSimplesEsq(AVL node)
{
AVL aux;
aux = node.right;
node.right = aux.left;
aux.left = node;
node = aux;
}