Jun 18 2009 05:10 AM 3064 6 Double Linked List shivi10j Make a middle node of doubly link list to the top of the list. kronos Profile Answers by kronos Questions by kronos Nov 17th, 2009 node *n1,*n2;n1 = n2 = head;while((n2->next) && (n2->next->next)){ n1 = n1->next; n2 = n2->next->next;]// n1 points to the mid... f2003062 Profile Answers by f2003062 Questions by f2003062 Aug 19th, 2009 Lets say if the middle node of the doubly linked list is "middle" and the start node is "head".then the code as follows.middle->prev->next = middle->next;middle->next-&... Answer Question Select Best Answer
Jun 18 2009 05:10 AM 3064 6 Double Linked List shivi10j Make a middle node of doubly link list to the top of the list. kronos Profile Answers by kronos Questions by kronos Nov 17th, 2009 node *n1,*n2;n1 = n2 = head;while((n2->next) && (n2->next->next)){ n1 = n1->next; n2 = n2->next->next;]// n1 points to the mid... f2003062 Profile Answers by f2003062 Questions by f2003062 Aug 19th, 2009 Lets say if the middle node of the doubly linked list is "middle" and the start node is "head".then the code as follows.middle->prev->next = middle->next;middle->next-&... Answer Question Select Best Answer
kronos Profile Answers by kronos Questions by kronos Nov 17th, 2009 node *n1,*n2;n1 = n2 = head;while((n2->next) && (n2->next->next)){ n1 = n1->next; n2 = n2->next->next;]// n1 points to the mid...
f2003062 Profile Answers by f2003062 Questions by f2003062 Aug 19th, 2009 Lets say if the middle node of the doubly linked list is "middle" and the start node is "head".then the code as follows.middle->prev->next = middle->next;middle->next-&...