Home | History | Annotate | Download | only in inc

Lines Matching full:head

46     node* head;
52 Map() : head( NULL ), tail ( NULL ),tmp(head),size_of_list(0) {}
53 bool empty() const { return ( !head || !tail ); }
66 while(head)
68 node* temp(head);
69 head=head->next;
79 tmp = head;
94 tmp = head;
109 tmp = head;
120 tmp = head;
132 tmp = head;
150 head = tail;
151 tmp=head;
153 tmp = head;
161 tmp = head;
167 if((head == tail) && (head->data == d))
170 tempnode = head;
171 head = tail = NULL;
175 if((tmp ==head) && (tmp->data ==d))
181 head = tmp;
217 tmp = head;
218 while(head)
220 tempnode = head;
222 head = head->next;
225 tail = head = NULL;