Tuesday, January 26, 2016

Linked List Problems

  • Linked List Insertion
  • Linked List Deletion (Deleting a given key)
  • Linked List Deletion (Deleting a key at given position) [ Ans ]
  • Find Length of a Linked List (Iterative and Recursive) [ Ans ]
  • Search an element in a Linked List (Iterative and Recursive) [ Ans ]
  • Swap nodes in a linked list without swapping data [ Ans ]
  • Write a C function to print the middle of a given linked list [ Ans ]
  • Nth node from the end of a Linked List [ Ans ]
  • Write a function to delete a Linked List [ Ans ]
  • Reverse a linked list
  • Detect loop in a linked list [ Ans ]
  • Given only a pointer to a node to be deleted in a singly linked list, how do you delete it?
  • Function to check if a singly linked list is palindrome
  • Recursive function to print reverse of a Linked List
  • Union and Intersection of two Linked Lists
  • Detect and Remove Loop in a Linked List

No comments:

Post a Comment