Advertisement
Guest User

Untitled

a guest
Dec 6th, 2019
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. avl.insert(make_pair(5, 5));
  2. avl.insert(make_pair(3, 3));
  3. avl.insert(make_pair(4, 4));
  4. avl.printit();
  5.  
  6. avl.insert(make_pair(8, 8));
  7. avl.insert(make_pair(25, 25));
  8.  
  9. avl.printit();
  10.  
  11. avl.insert(make_pair(2, 2));
  12. avl.insert(make_pair(60, 60));
  13. avl.insert(make_pair(20, 20));
  14. avl.insert(make_pair(55, 55));
  15.  
  16. avl.printit();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement