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

Aman_Sharma

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

Insert a Node at a Specific Position in a Linked List

Aman SharmaOctober 11, 2021March 16, 2023
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, 2021March 16, 2023
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

Given only a pointer to a node to be deleted in a singly linked list, how do you delete it?

Aman SharmaOctober 7, 2021November 16, 2022
Introduction In this article, we will discuss about given only a pointer to a node in a singly linked list, how can we delete that node. The linked list is...
Linked list articles

Print the reverse of a linked list without extra space and modifications

Aman SharmaOctober 7, 2021June 6, 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

Detect and Remove the loop in a linked list

Aman SharmaSeptember 29, 2021November 10, 2022
In this article, we will learn to detect and remove loop in a linked list. A loop is a linked list defined as a condition that when the last node...
Linked list articles

Insertion Sort for Singly Linked List

Aman SharmaSeptember 29, 2021November 16, 2022
In this article, we will discuss how to perform insertion sort using linked list. The linked list is one of the most important concepts and data structures to learn while...
Java

Java.util.LinkedList.poll(), pollFirst(), pollLast() with examples in Java

Aman SharmaSeptember 28, 2021March 10, 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

Advantage and Disadvantage of Linked List Over Array

Aman SharmaSeptember 28, 2021February 24, 2023
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

Linked List Deleting Node

Aman SharmaSeptember 27, 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

Reverse a Doubly Linked List using recursion

Aman SharmaSeptember 24, 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

Delete a Doubly Linked List node at a given position

Aman SharmaSeptember 23, 2021November 18, 2022
Introduction In this article, we will discuss how to delete a doubly linked list node at a given position. Linked List is one of the most important topics for the...
Linked list articles

Implement a stack using a singly linked list

Aman SharmaSeptember 16, 2021December 14, 2022
In Data structures we have seen how the memory is dynamic in linked lists,Stacks and queues. Now let's just look at how to implement data structures i.e stacks using other...
Linked list articles

Doubly Circular Linked List Introduction and Insertion

Aman SharmaSeptember 16, 2021November 3, 2022
Introduction In this blog, we will study the doubly circular linked list introduction and insertion. A doubly circular linked list is a linked list that has the features of both...
Linked list articles

Sort a Linked List of 0s, 1s and 2s

Aman SharmaSeptember 16, 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

How to Get a Value from LinkedHashMap by Index in Java

Aman SharmaSeptember 14, 2021December 13, 2022
Basically, If we will use linkedhashmap class we can retrieve or fetch the value which is mapped through a parameter which contains a key. So lets just look into a...
Java

How to Get First or Last entry from Java LinkedHashMap

Aman SharmaSeptember 7, 2021March 10, 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...
Java

LinkedHashMap get() Method in Java

Aman SharmaSeptember 4, 2021March 10, 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...
Java

LinkedList addFirst() Method in Java

Aman SharmaSeptember 4, 2021March 10, 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

Check if a doubly-linked list of characters is palindrome or not

Aman SharmaSeptember 3, 2021November 16, 2022
Introduction In this article, we will discuss how to check if characters are palindrome in doubly linked list. The characters read the same backward as forward. Some examples of palindromic...
Linked list articles

Search an element in a Linked List (Iterative and Recursive)

Aman SharmaSeptember 2, 2021March 9, 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

Java.util.LinkedList.offer(), offerFirst(), offerLast() in Java

Aman SharmaSeptember 1, 2021November 28, 2022
We will discuss the Java LinkedList class and its functions, making our work flexible while writing the code. A linked list is one of the major concepts of data structures...
Java

LinkedList push() Method in Java

Aman SharmaAugust 31, 2021March 10, 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

How to get a Sublist of LinkedList in Java

Aman SharmaAugust 31, 2021November 28, 2022
This blog will discuss various approaches To Get SubList from Linked List in Java. We have to figure out how to get a sublist of linked list in Java. This...
Linked list articles

Bubble Sort in Linked List by Swapping Nodes

Aman SharmaAugust 31, 2021November 15, 2022
In this blog, we will learn about bubble sort in linked list. The linked list is one of the most important concepts and data structures to learn while preparing for...
Linked list articles

Check if a linked list of strings forms a palindrome

Aman SharmaAugust 30, 2021June 15, 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

Move the first element to the end of the given list

Aman SharmaAugust 30, 2021November 18, 2022
This blog will describe the efficient approach to move first node to last in linked list. The linked list is one of the most important concepts and data structures to...
Java

Java.util.LinkedList.get(), getFirst() and getLast() in Java

Aman SharmaAugust 30, 2021March 10, 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...

Posts navigation

1 2 3 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
    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