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

Abhinav_Trivedi

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

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

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

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

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

Deletion At Different Positions in A Circular Linked List

Abhinav TrivediSeptember 29, 2021April 21, 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

Decimal Equivalent of Binary Linked List

Abhinav TrivediSeptember 29, 2021November 16, 2022
In this article, we will discuss the decimal equivalent of a binary linked list. For converting a number from binary to a decimal using the positional notation method, we multiply...
Queues

Queue Linked List Implementation

Abhinav TrivediSeptember 27, 2021March 12, 2022
Problem Statement We need to implement basic functionalities of a queue using a linked list. A queue is a linear data structure that allows elements to be added and deleted...
Linked list articles

Multiply Linked Lists

Abhinav TrivediSeptember 27, 2021November 28, 2022
In this article we will learn an interesting problem of a linked list “multiply two linked lists”. We have given two linked lists and we have to perform the multiplication...
Linked list articles

Merge two sorted linked lists (in-place)

Abhinav TrivediSeptember 24, 2021November 22, 2022
In this article, we will learn how to merge two sorted linked lists. Sorting is defined as the technique of arranging the elements either in ascending or descending order. let’s...
Linked list articles

Merge K sorted linked lists | Set 1

Abhinav TrivediSeptember 21, 2021June 15, 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

Merge k sorted linked lists | Set 2 (Using Min Heap)

Abhinav TrivediSeptember 21, 2021December 14, 2022
Several approaches exist in the programming world to solve this problem, some efficient and some not so efficient. Let us build the intuition to solve this problem brick by brick,...
Linked list articles

Merge two sorted linked lists

Abhinav TrivediSeptember 20, 2021April 20, 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

Reverse A Sublist Of Linked List

Abhinav TrivediSeptember 18, 2021March 9, 2022
Introduction The linked list is one of the most important concepts to know while preparing for interviews. Having a good grasp on linked list can be a huge plus point...
Linked list articles

Search an element in a Doubly Linked List

Abhinav TrivediSeptember 17, 2021November 18, 2022
In the following article, we are going to look into an approach for searching in doubly linked list. We already know that doubly linked list requires more space as it’s...
Linked list articles

Clone a linked list with next and random pointer in O(1) space

Abhinav TrivediSeptember 14, 2021November 22, 2022
In this article, we will learn to clone a linked list with next and random pointer.Cloning is defined copying the linked list without changing its structure and data. so let’s...
Linked list articles

How To Write C Functions That Modify The Head Pointer Of A Linked List

Abhinav TrivediSeptember 14, 2021December 13, 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

Implementation of Deque Using Doubly Linked List

Abhinav TrivediSeptember 10, 2021November 9, 2022
In this article, we will learn the implementation of deque using a doubly linked list Deque is a diagrammed version of the Queue data structure that allows insertions and deletions...
Linked list articles

Convert A String To A Singly Linked List

Abhinav TrivediSeptember 10, 2021November 16, 2022
A linked list is one of the most important topics for the interviews. Basically a linked is the link of nodes connected to every next node through a pointer and...
Linked list articles

Partitioning a linked list around a given value and If we don’t care about making the elements of the list “stable”

Abhinav TrivediSeptember 1, 2021November 28, 2022
This article will discuss the problem partition a linked list around a given value and its proper solution using an algorithm and dry run. Before jumping into the details of...
Linked list articles

Modify contents of Linked List

Abhinav TrivediSeptember 1, 2021November 10, 2022
This article describes the detailed explanation and implementation of modify contents of linked list in which we will update value of linked list. Having a good grasp of Linked Lists...
Linked list articles

Construct a linked list from a 2D matrix (Iterative approach)

Abhinav TrivediAugust 31, 2021November 30, 2022
The linked list is one of the most important topics of data structures. In this blog, we have a problem in which we have to construct a 2D linked list....
Linked list articles

Adding Two Polynomials Using Linked List

Abhinav TrivediAugust 20, 2021March 14, 2023
The linked list data structure is versatile in nature. A linked list can be used in a variety of situations. In this article, we will look at a problem with...

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
    March 21, 2023

    Difference between Scripting Language and Programming Language

  • 2
    March 21, 2023

    Linker and Loader

  • 3
    March 21, 2023

    Difference between Mealy and Moore Machine

  • 4
    March 21, 2023

    Super Keyword in Java

  • 5
    March 21, 2023

    Why Main Method is Static in Java?

  • 6
    March 21, 2023

    Joins in DBMS

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