top of page

Reverse A Singly Linked List - Everything You Need To Know
Write an algorithm to reverse the given singly linked list. You can use the properties of a stack...
Code Recipe
Feb 19, 20225 min read
1,393 views
1 comment

Finding The Middle Element - Singly Linked List
Given a singly linked list, find the middle element in it. If there are even number of nodes in the given linked list then return the
Code Recipe
Feb 13, 20224 min read
666 views
0 comments

Singly Linked List - Everything You Need To Know
Linked list is a linear data structure. Each element in a linked list is an individual object. These individual objects are called nodes.
Code Recipe
Feb 12, 20228 min read
1,595 views
4 comments

LRU Cache - Everything You Need To Know
LRU cache stores items in the order in which they were requested. In LRU strategy, when the cache is full, the item that hasn't been used
Code Recipe
Jan 8, 20227 min read
18,723 views
2 comments
bottom of page