Advertisement
Guest User

Untitled

a guest
Jul 20th, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.19 KB | None | 0 0
  1. #include "ListType_Q2.h"
  2. ListType_Q2::ListType_Q2()
  3. {
  4.     length = 0;
  5. }
  6.  
  7. //Time complexity : O(1)
  8. void ListType_Q2::InsertAtLastPosition(ItemType item)
  9. {
  10.     info[length] = item;
  11.     length++;
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement