AVL tree/Java: Difference between revisions

no edit summary
No edit summary
No edit summary
Line 230:
root.Right = x.Left;
x.Left = root;
root =return x;
return root;
}
 
Line 246 ⟶ 244:
root.Left = x.Right;
x.Right = root;
root =return x;
return root;
}