Guest User

Untitled

a guest
Dec 13th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. class Node {
  2. Node parent;
  3. int rank;
  4. //...constructor and method declarations}
  5.  
  6. Node getParent(){
  7. while(parent != this)
  8. {
  9. parent = parent.getParent();
  10. }
  11. return parent;
Add Comment
Please, Sign In to add comment