Advertisement
Guest User

Untitled

a guest
Oct 17th, 2019
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1.  
  2. ArrayList lista(10);
  3. lista.append(1);
  4. lista.append(2);
  5. lista.append(5);
  6. lista.append(7);
  7. lista.append(8);
  8. lista.append(9);
  9. lista.append(2);
  10. lista.append(11);
  11. lista.append(12);
  12. lista.append(12);
  13. cout << lista << endl;
  14.  
  15. lista.del(lista.last());
  16. if(lista.empty())
  17. cout << "empty" << endl;
  18. if(lista.full())
  19. cout << "full" << endl;
  20.  
  21. cout << lista << endl;
  22.  
  23. lista.del(5);
  24. cout << lista << endl;
  25.  
  26. cout << lista.prev(3) << endl;
  27.  
  28. cout << lista.locate(4) << endl;
  29.  
  30. lista.insert(5, 5);
  31. cout << lista << endl;
  32. lista.del(5);
  33. cout << lista << endl;
  34.  
  35. lista.clear();
  36. if(lista.empty())
  37. cout << "empty" << endl;
  38. if(lista.full())
  39. cout << "full" << endl;
  40.  
  41. cout << lista << endl;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement