AVL Tree Rotation

0

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;    
}
    
asked by anonymous 28.04.2018 / 02:30

0 answers