Skip to content

PrepBytes Blog

ONE-STOP RESOURCE FOR EVERYTHING RELATED TO CODING

Log In

Log Out

Menu
  • Language
    • C
    • C++
    • Java
    • Javascript
    • Python
  • Data Structure
    • Array
    • Graphs
    • Heap
    • Linked List
    • Segment Tree
    • Stack
    • Trees
    • Queue
  • Algorithm
    • Backtracking
    • Dynamic Programming
    • Greedy Algorithm
    • RECURSION
    • Searching
    • Sorting
  • CSE Subjects
    • Operating System
  • Company Placement
  • Interview
    • Interview Tips
    • General Interview Questions
    • Algorithms
    • Data Structure
    • Languages
    • Other Topics
  • Competitive
    • Data Structure
      • Array
      • Graph
      • Heap
      • Segment Tree
      • Stack
      • Queue
      • Tree
      • Tries
    • Algorithm
      • Backtracking
      • Dynamic Programming
      • Greedy Algorithm
      • Searching
      • Sorting
    • Other Topics
      • Computational Geometry
      • Game Theory
      • Maths
      • Pointers
      • Recursion
      • String
  • Others
    • Computational Geometry
    • Game Theory
    • Hashing
    • Maths
    • Pointers
    • Recursion
    • String

Sign in to your account

Forgot your password?

New User? Create Account

Login via OTP

We will send you an one time password on your mobile number

New User? Create Account

Login via OTP

An OTP has been sent to your mobile number please verify it below

Resend OTP in 30 sec
Resend
New User? Create Account

Register with PrepBytes

I agree to the terms and conditions.
Already have a account? Login Here

Category: Linked list articles

Linked list articles

Difference between ArrayList and LinkedList

PrepbytesJanuary 16, 2023January 16, 2023
In this article, we are going to learn the important difference between ArrayList and LinkedList. As it is one of the often-asked interview questions for Java developers, this article is...
Linked list articles

How to create a mergeable stack?

Niraj KumarAugust 26, 2022December 14, 2022
Let’s assume there are 2 stacks. Stack A and Stack B. Now we are going to push elements in both the stacks. After Merge Operation we will push all elements...
Linked list articles

Circular Queue | Set 2 (Circular Linked List Implementation)

Ankit KocharJuly 19, 2022December 14, 2022
Circular Queue It is a linear data structure that works on the principle of FIFO (First in First out). In this type of queue element can be added in any...
Linked list articles

Convert a given Binary Tree To Circular Doubly Linked List

PrepBytesJuly 13, 2022December 14, 2022
![](https://prepbytes-misc-images.s3.ap-south-1.amazonaws.com/assets/1645007594981-Article_164.png) In this article, we will deep dive and discuss how to convert the binary tree to circular doubly linked list. Converting a binary tree to circular doubly linked list...
Linked list articles

Priority Queue using Doubly Linked List

Ankit KocharJuly 12, 2022December 14, 2022
Problem Statement: Given nodes with their priority, we have to implement a priority queue using a doubly linked list. What is a Priority Queue? Priority queues are abstract data structures...
Linked list articles

Priority Queue Using Linked List

Abhishek SharmaJune 29, 2022December 14, 2022
Priority Queue: Priority queue is an abstract data type, It is a type of queue in which each element has a priority assigned to it. The priority of the element...
Linked list articles

Python Queue using Doubly Linked List

Ankit KocharJune 24, 2022December 14, 2022
A queue is an ordered collection of elements in which the addition of one element happens at one end known as REAR and the removal of existing elements occurs at...
Linked list articles

Know Everything about Linked List in Data Structure

Ria PathakApril 11, 2022October 11, 2022
The linked list is one of the most important concepts in data structures and data structures to learn while preparing for interviews. Having a good grasp of Linked Lists can...
Linked list articles

Convert A Singly Linked List to An XOR Linked List

PrepBytesNovember 9, 2021December 14, 2022
In this article, we will see another problem of linked list Convert singly linked list into xor linked list. Linked list is a linear data structures. The node in linked...
Linked list articles

Merge K Sorted Doubly Linked List in Sorted Order

Abhinav TrivediNovember 8, 2021November 28, 2022
A doubly linked list is a type of linked list in which the node consists of three parts i.e. the data, the pointer of the previous node and the pointer...
Linked list articles

Union intersection Two Linked Lists Using Merge Sort

PrepBytesNovember 8, 2021March 10, 2022
Introduction Linked list is one of the most important concepts and data structures to learn while preparing for coding interviews. Having a good grasp of Linked Lists can be a...
Linked list articles

Josephus Circle Using Circular Linked List

Abhinav TrivediNovember 8, 2021November 16, 2022
Josephus problem linked list is also known as josephus problem using circular linked list. This problem is continuously asked in the recent interviews. Let us understand the josephus problem linked...
Linked list articles

Menu Driven Program For All Operations On Doubly Linked List in C

PrepBytesOctober 26, 2021December 14, 2022
In the below article, we are seeing how to code a menu driven program for all operations on a doubly linked list in C. Generally a doubly linked list consists...
Linked list articles

Count pairs from two linked lists whose sum is equal to a given value

Abhinav TrivediOctober 26, 2021November 28, 2022
This blog will discuss an important problem of count pairs from two linked with given sum Such problems do come in interviews. Before solving the problem, it’s recommended that a...
Linked list articles

Merge Two Unsorted Linked Lists To Get A Sorted List

PrepBytesOctober 26, 2021December 14, 2022
Introduction Even though we have seen different operations on linked lists, where we have done insertion, deletion etc. But what if we want to merge two unsorted linked lists. Lets...
Linked list articles

Find a triplet from three linked lists with a sum equal to a given number

Abhinav TrivediOctober 25, 2021November 28, 2022
This article will discuss in detail how to find a triplet from three linked lists with a sum equal to a given number. Linked list is a dominating topic when...
Linked list articles

Make loop at K-Th position in the Linked List

Abhinav TrivediOctober 25, 2021November 28, 2022
In this article, we will see a new coding problem of the linked list i.e.” Create a loop in linked list” A linked list is a linear data structure. Each...
Linked list articles

Rearrange a linked list such that all even and odd positioned nodes are together

Abhinav TrivediOctober 25, 2021November 25, 2022
A linked list is a linear data structure. In the linked list elements are not stored continuously but randomly. It is a vital topic from the placement point of view,...
Linked list articles

Given a linked list of line segments, remove middle points

Abhinav TrivediOctober 25, 2021April 19, 2022
Introduction The linked list is one of the most important concepts to know while preparing for interviews. Having a good grasp of a linked list can be a huge plus...
Linked list articles

Find Pairs With Given Sum In A Doubly Linked List

Abhinav TrivediOctober 25, 2021March 10, 2022
Problem Statement In this problem, we will be given a sorted doubly linked list and a target integer. We need to find and print the pairs whose sum is equal...
Linked list articles

Check If Linked List Is Palindrome

Aman SharmaOctober 25, 2021November 28, 2022
Linked is an important concept of data structures for placement point of view. In an interview, almost all the questions asked related to the linked list. One of the most...
Linked list articles

How to Implement Generic LinkedList in java

PrepBytesOctober 14, 2021December 14, 2022
Introduction One of the most crucial data structures to learn while preparing for interviews is the Linked List. In a coding interview, having a thorough understanding of Linked Lists might...
Linked list articles

C program to Reverse a Linked List

Abhinav JainOctober 11, 2021December 14, 2022
The linked list is one of the most important concepts and data structures to learn while preparing for interviews. Having a good grasp of Linked Lists can be a huge...
Linked list articles

Point arbit pointer to greatest value right-side node in a linked list

Abhinav TrivediOctober 11, 2021November 30, 2022
In this article, we will discuss one of the famous questions of linked lists “Point arbit pointer to greatest value right-side node in a linked list”. Having practice questions like...
Linked list articles

Types of Linked list

Abhinav TrivediOctober 11, 2021April 11, 2022
Introduction The linked list is one of the most important concepts and data structures to learn while preparing for interviews. Having a good grasp of Linked Lists can be a...
Linked list articles

Insert a Node at a Specific Position in a Linked List

Aman SharmaOctober 11, 2021November 15, 2022
As we already know that linked lists are a dynamic data structure it is important to know how to insert an element as well. In the article given below we...
Linked list articles

Linked List – Inserting a node

Aman SharmaOctober 11, 2021March 10, 2022
Introduction The linked list is one of the most important concepts and data structures to learn while preparing for interviews. Having a good grasp of Linked Lists can be a...
Linked list articles

Write a C function to print the middle of a linked list

Aman SharmaOctober 11, 2021December 1, 2022
This blog will discuss how to make a C function to print the middle of a linked list. Linked list is one of the most interesting topics when you start...
Linked list articles

Applications of Linked List Data Structure

Aman SharmaOctober 8, 2021December 2, 2022
In the below article, we will learn about the applications of linked list in data structures. A linked list is a linear data structure. In a linked list, the elements...
Linked list articles

Flatten a multi-level linked list (Depth wise)

PrepBytesOctober 7, 2021November 25, 2022
In this article, we will learn how we can flatten the list either horizontally using the next pointers or vertically using the down pointers. let’s try to understand the logic...

Posts navigation

1 2 … 7 Next

Pages

  • ALGORITHMS
  • ARRAY
  • BACKTRACKING
  • C PROGRAMMING LANGUAGE
  • C++ PROGRAMMING LANGUAGE
  • CAPGEMINI
  • CIRCULAR LINKED LIST
  • COMPANY PLACEMENT PROCEDURE
  • COMPETITIVE CODING
  • COMPUTATIONAL GEOMETRY
  • CSE SUBJECTS
  • DATA STRUCTURE
  • DOUBLY LINKED LIST
  • DYNAMIC PROGRAMMING
  • GAME THEORY
  • GRAPHS
  • GREEDY ALGORITHM
  • HASHING
  • HEAP
  • INTERVIEW PREPARATION
  • INTERVIEW TIPS
  • JAVA PROGRAMMING LANGUAGE
  • JAVASCRIPT PROGRAMMING LANGUAGE
  • Languages
  • LINKED LIST
  • LINKED LIST USING C
  • MATHEMATICS
  • OPERATING SYSTEM
  • POINTERS
  • PYTHON PROGRAMMING LANGUAGE
  • QUEUE
  • RECURSION
  • SEARCHING
  • SEGMENT TREE
  • SORTING
  • STACK
  • STRING
  • TREES

Recent Articles

  • 1
    January 27, 2023

    What is Final Class in Java?

  • 2
    January 27, 2023

    Linux Operating System

  • 3
    January 27, 2023

    Dangling Pointer in C with Example

  • 4
    January 27, 2023

    Final Keyword in Java

  • 5
    January 27, 2023

    Encapsulation in Java

  • 6
    January 27, 2023

    Polymorphism in Python

Close
Menu
  • Language
    • C
    • C++
    • Java
    • Javascript
    • Python
  • Data Structure
    • Array
    • Graphs
    • Heap
    • Linked List
    • Segment Tree
    • Stack
    • Trees
    • Queue
  • Algorithm
    • Backtracking
    • Dynamic Programming
    • Greedy Algorithm
    • RECURSION
    • Searching
    • Sorting
  • CSE Subjects
    • Operating System
  • Company Placement
  • Interview
    • Interview Tips
    • General Interview Questions
    • Algorithms
    • Data Structure
    • Languages
    • Other Topics
  • Competitive
    • Data Structure
      • Array
      • Graph
      • Heap
      • Segment Tree
      • Stack
      • Queue
      • Tree
      • Tries
    • Algorithm
      • Backtracking
      • Dynamic Programming
      • Greedy Algorithm
      • Searching
      • Sorting
    • Other Topics
      • Computational Geometry
      • Game Theory
      • Maths
      • Pointers
      • Recursion
      • String
  • Others
    • Computational Geometry
    • Game Theory
    • Hashing
    • Maths
    • Pointers
    • Recursion
    • String
FOLLOW US
CONTACT US
+91-8800 2588 17
contact@prepbytes.com
QUICK LINKS
Interview NotesMock TestsPlacement ProgrammeCoding CoursesMock InterviewAbout UsBlog