Question about linked listWhat I originally had problems visualizing was the last snippet [code]head = temp[/code]. To me it w...
Question about linked listLets say i create a new list [code] node* temp = new node; [Temp] temp->next = head; [Temp]->[Head...
Question about linked list[code] struct node{ node* next; int data; }; class List{ public: ...
This user does not accept Private Messages