Articles by Tag #linkedlist

Browse our collection of articles on various topics related to IT technologies. Dive in and explore something new!

Merge Two Sorted Linked Lists

Welcome back to our DSA Learning Series — where we pick one problem at a time, understand its logic...

Learn More 4 0Oct 26 '25

Understanding Linked Lists in JavaScript

Hey friends 👋 It’s another Tutorial Wednesday, and today we’re stepping up a bit in our DSA journey...

Learn More 4 4Sep 17 '25

Solving LeetCode's "Add Two Numbers" Iteratively and Recursively - Part 1

If you’ve spent any time preparing for software engineering interviews, you’ve likely come across...

Learn More 0 0Sep 14 '25

LinkedList e a distância entre o que a teoria promete e o que a produção cobra

Introdução LinkedList costuma aparecer cedo na formação de qualquer desenvolvedor. Ela vem...

Learn More 0 0Feb 4

DSA Fundamentals: Linked Lists - Mastering Dynamic Data Structures

Linked Lists are fundamental data structures that overcome key limitations of arrays, particularly...

Learn More 0 0Nov 21 '25

Story of The First Linked List

🙋‍♂️Hi In this story, we will uncover how linked lists were first used to solve data...

Learn More 0 0Jan 18

Copy Linked List with random pointer

Problem tc :O(n) where n is no. of nodes in the original linked list Iterative approach: /* //...

Learn More 0 0Apr 18 '25

Finally realized how reverse list work

the core is prev pointer is storing the current while(current){ next = current.next current.next =...

Learn More 0 0Mar 24 '25

I have been told to avoid linked lists.

I've been told to avoid linked lists because their elements are scattered everywhere, which can be...

Learn More 0 0Mar 23 '25

Fun C++ project using linked list – Music Player

Hi everyone! 👋 I recently built a terminal-based music player using C++ and linked lists as part of...

Learn More 6 0Aug 5 '25

Add 1 to the list

Problem tc :O(n), sc:O(1) /* class Node{ int data; Node next; Node(int x){ ...

Learn More 0 0Apr 6 '25

Understanding Singly and Doubly Linked Lists with Real-Life Examples and JavaScript Code

Introduction Linked lists are one of the fundamental data structures used in computer science. They...

Learn More 0 0Feb 24 '25

Mastering Pointers in Doubly Linked Lists: Challenges and Solutions

Introduction to Doubly Linked Lists and Pointer Challenges In the vast world of data...

Learn More 0 0Jul 30 '25

Swap Kth node from start and end of a LinkedList

Problem TC: O(n) SC: (1) /** * Definition for singly-linked list. * public class ListNode { * ...

Learn More 0 0Jun 25 '25