Advertisement
pichumy

Untitled

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