-
Notifications
You must be signed in to change notification settings - Fork 0
Linked List
Varma Penmetsa edited this page Oct 2, 2018
·
5 revisions
- Swap node in a Linked List
- Swap every two adjacent nodes
- Swap elements pairwise in a Linked List
- Length of a linked list
- Rotate given linked list counter-clockwise by k nodes
- Write a function to check if the given two linked lists are identical
- Counts the number of times a given number occurs
- Reverse a given node of a linked list
- Reverse a Linked List
- Reverse every alternate k nodes
- Reverse every k nodes recursively
- Reverse every k nodes iteratively
- Detect Loop in a linked list
- Detect and remove Loop
- Alternating split of a given Singly Linked List
- Sort a linked list that is sorted alternating ascending and descending orders?
- Get middle element
- Get nth element from last
- Delete a key in linked list
- Delete all alternate nodes of linked list
- Delete N nodes after M nodes in a linked list
- Retain M nodes then delete next N nodes
- Delete all node with greater value on right side
- The sum list is list representation of addition of two input numbers
- The sum list is linked list representation of addition of two input numbers
- Merge sort of linked list recursive
- Merge sort of linked list iteratively
- Merge two sorted linked lists such that merged list is in reverse order
- Merge K sorted linked lists
- Merge two sorted linked lists
- Merge a linked list into another linked list at alternate positions
- FlattenLinkedList
- Flatten a multilevel linked list
- Intersection of two Sorted linked lists
- Select a Random Node from a Singly Linked List(To Do)
- Rearrange the nodes in the list so that the new formed list is : L0 -> Ln -> L1 -> Ln-1 -> L2 -> Ln-2
- Remove duplicate from a sorted linked list
- Remove duplicate from a un-sorted linked list
- Given two singly linked lists find intersecton node
- Check if give linked list is palindrome
- Moves last element to front
- Find a triplet from three linked lists with sum equal to a given number
- Union and Intersection of two Linked Lists
- Given a linked list of line segments, remove middle points