Advertisement
pichumy

Untitled

Feb 8th, 2014
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. IntLinkedList::~IntLinkedList()
  2. {
  3. IntNode *temp = this->head;
  4. while(temp!=NULL)
  5. {
  6. IntNode *temp1 = temp;
  7. temp = temp->getNext();
  8. delete temp1;
  9. }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement