User loginNavigationTake FREE online C/C++ test now!Unix / Linux ProgrammingCode search made simpleYour feedback needed!As a webmaster of this site, I regard you as our most important critic and commentator. We value your opinion and want to know what we are doing right, what we could do better and any other words of wisdom you're willing to pass our way. It would be our greatest motivation which will help us in developing areas you would like to see in this site. We hope you will continue to encourage and support us in our future endeavors.
INDIA |
Linked List Questionnaire - A good collection of questions on Linked ListsLinked List - In this page, I'm maintaining the collection of Linked List queries. Please don't put solutions here....
* Implement a Stack (LIFO) using singly linked list? * Write a C program to implement a Queue (FIFO) using singly linked list? * Write a C program to reverse a singly linked list? * How to detect a loop in a singly linked list? Write a C program for the same. * How would you find out if one of the pointers in a linked list is corrupted or not? * How do you reverse a doubly linked list? Write a C program to do the same. * Given only a pointer to a node to be deleted in a singly linked list, how do you delete it? * How do you find the middle of a linked list? Write a C program for the same. * How do you sort a linked list? Write a C program to sort a linked list. * How do you reverse a linked list without using any C pointers? * How to compare two linked lists? Write a C program to compare two linked lists. * How to create a mirror copy of a linked list? Write a C program for the same. * Write a C program to return the nth node from the end of a linked list. |