May 02 2013 03:20 PM 5487 2 how to reverse a linked list without usinf any pointer of c?"> how to reverse a linked list without usinf any pointer of c? noor.lalu shaan Mar 30th, 2014 Use stack. push all the elements in stack and again insert this elements from stack to linked list. This will be your reverse linked list Answer Question Select Best Answer May 02 2013 02:05 PM 6277 2 how to check whether linked list is circular? noor.lalu mahesh Jun 17th, 2013 get two pointer to head of the list. then increment one pointer by two nodes and other by one node. if list is circular at some point both pointers will be pointing to same node. else u will encounter... Answer Question Select Best Answer
May 02 2013 03:20 PM 5487 2 how to reverse a linked list without usinf any pointer of c?"> how to reverse a linked list without usinf any pointer of c? noor.lalu shaan Mar 30th, 2014 Use stack. push all the elements in stack and again insert this elements from stack to linked list. This will be your reverse linked list Answer Question Select Best Answer
shaan Mar 30th, 2014 Use stack. push all the elements in stack and again insert this elements from stack to linked list. This will be your reverse linked list
May 02 2013 02:05 PM 6277 2 how to check whether linked list is circular? noor.lalu mahesh Jun 17th, 2013 get two pointer to head of the list. then increment one pointer by two nodes and other by one node. if list is circular at some point both pointers will be pointing to same node. else u will encounter... Answer Question Select Best Answer
mahesh Jun 17th, 2013 get two pointer to head of the list. then increment one pointer by two nodes and other by one node. if list is circular at some point both pointers will be pointing to same node. else u will encounter...