/Linked_List

Linked list implementation using C

Primary LanguageC

Linked_List

Linked list implementation using C

Programs created

  1. Write a program to count the number of nodes in a singly linked list.
  2. Write a program to search a particular value in a singly linked list.
  3. Write a program to insert a new node at the beginning and end of singly linked list.
  4. Write a program to insert a new node before a node with a particular value in a singly linked list.
  5. Write a program to insert a new node after a node with a particular value in a singly linked list.
  6. Write a program to delete the first and last node from a singly linked list.
  7. Write a complete program to create, display, insert and delete node of a Circular linked list.
  8. Write a complete program to create, display, insert and delete node of a doubly linked list.
  9. Write a program to simulate stack as a linked list.
  10. Write a program to simulate Queue as a linked list.

Note

There are both .exe and .c file here. There are lots of palaces where improvement can be made.