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

Ashutosh_Anand

Java

Difference and similarities between HashSet, LinkedHashSet, and TreeSet in Java

Ashutosh AnandJanuary 6, 2022July 6, 2022
Introduction We all have been using HashSet, LinkedHashSet, and TreeSet in Java. But do you know what are the differences between them and how they all are similar too in...
Linked list articles

Construct a Maximum Sum Linked List out of two Sorted Linked Lists having some common nodes

Ashutosh AnandAugust 20, 2021June 16, 2022
Problem statement Given two sorted linked lists, derive a linked list that contains the maximum sum path using both the linked lists. The resultant list can contain nodes from both...
Linked list articles

Check If A Linked List Is Circular Linked List

Ashutosh AnandAugust 20, 2021November 28, 2022
As we already saw many articles over the linked list. Let’s have a look at another article on the linked list in which we have to check linked list is...
Linked list articles

Program To Reverse A Linked List Using Stack

Ashutosh AnandAugust 17, 2021December 13, 2022
In the below article we will see an approach on how to reverse a linked list using stack. In this approach we will see how efficiently the stack can be...
Linked list articles

Print Reverse Of A Linked List Without Actually Reversing it

Ashutosh AnandAugust 17, 2021March 12, 2022
Problem statement Given a singly linked list. Write a function to print it in reverse order. The only restriction is that you can’t reverse the original linked list. Problem statement...
Linked list articles

How to Add Two Numbers Represented by Linked Lists

Ashutosh AnandAugust 16, 2021November 9, 2022
A linked list is one of the most famous data structure asked in most coding interviews and have different variety of questions based on different concepts. In this article, we...
Linked list articles

Delete nodes that have a greater value on the right side

Ashutosh AnandAugust 16, 2021November 18, 2022
Introduction We can define a linked list as a sequence of data structures which are connected through links and each node is having a pointer which points to the next...
Linked list articles

Intersection point of two linked lists

Ashutosh AnandAugust 16, 2021March 10, 2022
Problem Statement Given two singly linked lists, which may or may not intersect each other. Write a function to return the intersection point of the two linked lists. If they...
Linked list articles

Remove Nth Node From End Of The Linked List

Ashutosh AnandAugust 16, 2021March 8, 2022
Problem Statement Given a singly linked list along with a positive integer N. Write a function to delete the Nth node from the end of the given linked list. Problem...
Linked list articles

Delete Alternate Nodes Of A Linked List

Ashutosh AnandAugust 12, 2021November 22, 2022
We have seen various approaches and various types of deletion in linked lists such as Deleting a linked list, deleting the first node of linked list, deleting the last node...
Linked list articles

LinkedList implementation in JavaScript

Ashutosh AnandAugust 10, 2021December 13, 2022
In this article we will study javascript linked list implementation. A linked list is a dynamic data structure as we can add or remove nodes easily. A linked list stores...
Linked list articles

Find Length Of A Linked List Iterative And Recursive

Ashutosh AnandAugust 10, 2021November 18, 2022
We are already aware about how a linked list stores elements in a non-contiguous manner and still connects all the elements via links. Therefore, we will discuss how to find...
Linked list articles

Print Nodes Of Linked List At Given indexes

Ashutosh AnandAugust 10, 2021November 18, 2022
This article will discuss how to print nodes of linked list at given indexes. Printing nodes of linked lists is a must to know task if you are practicing linked...
Linked list articles

Student Record Management System Using Linked List

Ashutosh AnandAugust 7, 2021March 16, 2023
A linked list is a fundamental data structure used in computer science and programming. It is a dynamic data structure that consists of a sequence of elements, each of which...
Linked list articles

Uses of Doubly Linked List with its Advantages and Disadvantages

Ashutosh AnandAugust 7, 2021November 15, 2022
We know, linked list is a linear data structure means linked list can not store elements continuously. A doubly linked list is a linear data structure similar to a singly...
Linked list articles

Can we reverse a linked list in less than O(n)?

Ashutosh AnandAugust 4, 2021June 22, 2022
Introduction Reversing a linked list is a very common operation that we need to perform while solving problems on linked list. So, if this operation is used a lot, let's...
Linked list articles

Generic Linked List in C

Ashutosh AnandAugust 4, 2021November 18, 2022
Introduction In this article, we will discuss in detail about generic linked list in C. Data Structures are very important in the interview for any IT firm. Practicing more and...
Linked list articles

Practice problems for linked list and recursion

Ashutosh AnandAugust 4, 2021March 12, 2022
Introduction Assume the node of the linked list has the following structure: [TABS_R id=3541] Below are some recursive functions, try to explain their functionality: [TABS_R id=3537] Answer: The above function...

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