ProDeveloperTutorial.com
  • DSA
    • Algorithms and Data Structures Tutorial
    • Crack The Coding Interview (DSA Sheet)
  • Coding Languages
    • C++ Tutorial
    • C language Tutorial
    • Linux Shell Scripting Tutorial
    • GIT Tutorial
    • Linux System Calls Tutorials
    • Shell Script Tutorial
  • System Design Tutorial

ProDeveloperTutorial.com

  • DSA
    • Algorithms and Data Structures Tutorial
    • Crack The Coding Interview (DSA Sheet)
  • Coding Languages
    • C++ Tutorial
    • C language Tutorial
    • Linux Shell Scripting Tutorial
    • GIT Tutorial
    • Linux System Calls Tutorials
    • Shell Script Tutorial
  • System Design Tutorial
ProDeveloperTutorial.com

What are You Looking For?

  • Coding Interview Questions
  • C++ Tutorial
  • DataStructure and Algorithms
  • C Language Tutorial
ProDeveloperTutorial
onJanuary 18, 2025

Linked List: Delete nodes which have a greater value on right side using recursion

Problem Statement: You are given a LL, you need to remove all the nodes that have a greater value to their right side Example Input: 11 ->…
Discover More
ProDeveloperTutorial
onJanuary 18, 2025

Linked List: Multiply two numbers represented by Linked Lists

Problem Statement: You are given 2 LL, you need to get the multiplication of the 2 LL. Example Input: 1 -> 2 2 Output: 24 Solution We…
Discover More
ProDeveloperTutorial
onJanuary 18, 2025

Linked List: Flatten a Linked List

Problem Statement: You are given a LL that has below properties: 1. Pointer to the next node in the main list 2. Pointer to a sorted LL with…
Discover More
ProDeveloperTutorial
onJanuary 18, 2025

Linked List: Rotate a Doubly Linked list in group of Given Size

Problem Statement: You are given DLL and a number ‘k’. You need to reverse every group of k nodes in the list Example Input: 1…
Discover More
ProDeveloperTutorial
onJanuary 18, 2025

Linked List: Rotate Doubly linked list by N nodes

Problem Statement: You are given a DLL and a integer N. You need to rotate the DLL counter clock wise Example Input : a b c d e N = 2 Output :…
Discover More
ProDeveloperTutorial
onJanuary 18, 2025

Linked List: Sort a “k”sorted Doubly Linked list

Problem Statement: You are given a DLL and each node is at most ‘k’ away from its target position. You need to sort the DLL…
Discover More
ProDeveloperTutorial
onJanuary 18, 2025

Linked List: Count triplets in a sorted DLL whose sum is equal to given value “k”.

Problem Statement: You are given a Sorted DLL and a value ‘k’. You need to get the triplets that the sum is equal to k Example…
Discover More
ProDeveloperTutorial
onJanuary 18, 2025

Linked List: Find pairs with a given sum in a DLL.

Problem Statement: You are given a DLL and a value, get the pairs that match the value. Example Example: 1 <-> 2 <-> 3 <-> 4…
Discover More
ProDeveloperTutorial
onJanuary 18, 2025

Linked List: Reverse a Doubly Linked List

Problem Statement: You are given an DLL you need to reverse the given DLL. Example Input: -> 1 -> 2 -> 3 -> 4 <- <- <-…
Discover More
ProDeveloperTutorial
onJanuary 18, 2025

Linked List: Deletion from a Circular Linked List

Problem Statement: You are given a circular linked list, and a node value. You need to delete that node from the list. Example Input: -> 1…
Discover More

Posts pagination

Previous 1 … 34 35 36 … 70 Next
ProDeveloperTutorial.com
Tutorials and Programming Solutions
  • DSA
    • Algorithms and Data Structures Tutorial
    • Crack The Coding Interview (DSA Sheet)
  • Coding Languages
    • C++ Tutorial
    • C language Tutorial
    • Linux Shell Scripting Tutorial
    • GIT Tutorial
    • Linux System Calls Tutorials
    • Shell Script Tutorial
  • System Design Tutorial
© 2024 — ProDeveloperTutorial. All Rights Reserved.