data-structures

Implement a Queue using a Linked List

Problem Statement: Implement a queue using a linked list with methods like enqueue and dequeue.

3 min read • Read
data-structures

Implement a Stack using Linked List

Problem Statement: Implement a stack using a linked list with it's functions like push, pop, peek, isEmpty.

3 min read • Read
data-structures

Implement a Linked List

Problem statement: Implement a Linked List with it's functions like inserting an element at start of the linked list and inserting at the end of linked list, searching an element in the list and removing an element from the list.

6 min read • Read
data-structures

Implement Deque using a List

Problem Statement: Implement a Deque with all it's functions using a List.

5 min read • Read