7 Posts tagged with LINKED LIST
Linked List Data Structure
A Linked List is a linear data structure consisting of nodes where each node has corresponding data and a pointer to the next node
Stack Implementation Using Linked List
Stack is a linear data structure to store and manipulate data which follows LIFO (Last In First Out) order during adding and removing elements in it.
Data Structures & Algorithms Problems
Merge Two Sorted Linked Lists
Data Structures & Algorithms Problems
Remove Duplicates From Sorted List - Given a sorted linked list, delete all duplicates such that each element appear only once
Data Structures & Algorithms Problems
k’th Node from End of Linked List - Given a linked list LL and a positive integer k, find the kth node from the end of the list.
Data Structures & Algorithms Problems
Middle Element of the Linked List-Given a linked list of integers, return the middle element of the linked list.