Linked List Practice Questions
- Print Linked List elements
- Reverse a Linked List
- Count the Occurence of integer in Linked list
- Pairwise swap links of linked list
- Add two number represented by Linked list
- Sorted insert for circular linked list
- Detect Loop in Linked list
- Find the middle element of Linked list
- Split a Circular Linked list into two slaves
- Delete Middle of Linked list
- Circular Linked list delete at given position
- Delete a node from Linked list without Head pointer
- Reverse a linked list in group of given number
- Intersection point in Y shapped Linked list
- Quick sort on Singly Linked list
- Quick Sort on doubly Linked list
- Merge sort on doubly Linked list
- Clone a Linked list with next and random pointer
- Decimal equivalent to Binary Linked list
- Check given linked list is circular or not ?
- Get nth Node of list
- Merge two sorted Linked list
- Flatten of linked list
- Add 1 to a number represented as Linked list
- Find length of Linked list
- Search an element in Linked list
- Delete a Linked list
- Detect and remove loop in Linked list
- Swap any two nodes without swapping data in Linked list
- Compare two string represented as Linked list
- Check whether length of Linked list is even or odd
- Sort a Linked list of 0's, 1's and 2's
- Find the smallest and largest number in Linked list
- Remove duplicate elements from a sorted Linked list
- Find modular node in a linked list
- Move last element to front of linked list
- Insert a whole linked list into other at k-th position
- Make middle node head of linked list
- Calculate rotation of sorted and rotated Linked list
- Check a linked list of string form palindrome
- Delete a linked list using recursion
- Identical Linked list
- Multiply two number represented as Linked list
- Make a loop at k-th position in Linked list
- Rotate a Linked List k times
- Recursive function to delete k-th node of List
- First non-repeating element in Linked list
- Convert a singly linked list to circular linked list
- Find the length of loop of linked list
- Sort a linked list by actual value which is already sort by absolute value
- My Solution IMP
- Print alternate elements of linked list
- Delete alternate nodes of Linked list
- Print alternate element of linked list using recursion
- Reverse each word of Linked list
- Sorted insert for Circular Linked list
Comments
Post a Comment