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: Program to Check if a Singly Linked List is Palindrome

Problem Statement: You are given a linked list, you need to check if it is a palindrome or not Example B -> A -> C -> A -> B True…
Discover More
ProDeveloperTutorial
onJanuary 18, 2025

Linked List: Split circular Linked List into two halves

Problem Statement: You are given an circular LL, you need to convert into 2 halves. Example Input: -> 1 -> 2 -> 3 -> 4 ^ | | _ _ _…
Discover More
ProDeveloperTutorial
onJanuary 18, 2025

Linked List: Find middle element in Linked List

Problem Statement: You are given an single LL. You need to fing the middle element. Example Input : 1->2->3->4->5->6 Output : 4…
Discover More
ProDeveloperTutorial
onJanuary 18, 2025

Linked List: Add 1 to the linked list

Problem Statement: You are given an linked list, you need to add one to it and return as result. Example Example 1: Input: 1 -> 9 -> 9…
Discover More
ProDeveloperTutorial
onJanuary 18, 2025

Linked List: Move last element to front of a given Linked List

Problem Statement: You are given an LL, you need to move the last element to the first. Example Input: 1->2->3->4->5 Output:…
Discover More
ProDeveloperTutorial
onJanuary 18, 2025

Linked List: Remove duplicates from an unsorted linked list

Problem Statement: You are given an un-sorted Linked List. You need to remove the duplicate nodes. Example Input: 2 -> 3 -> 3 -> 1…
Discover More
ProDeveloperTutorial
onJanuary 18, 2025

Linked List: Reverse Linked List in groups

Problem Statement: You are given a linked list and an integer k, you need to reverse it group wise. Example Input: 1 -> 2 -> 3 -> 4…
Discover More
ProDeveloperTutorial
onJanuary 18, 2025

Searching and Sorting: Factorial Trailing Zeroes

Problem Statement: you are given an integer, you need to return the number of trailing zeros in n!. Example Input: n = 5 Output: 1 Because the…
Discover More
ProDeveloperTutorial
onJanuary 18, 2025

Searching and Sorting: Find the missing number in Arithmetic Progression

Problem Statement: You are given an array that has elements of arithmetic progression in order. One element is missing, you need to find that…
Discover More
ProDeveloperTutorial
onJanuary 18, 2025

Searching and Sorting: K-th Element of Two Sorted Arrays

Problem Statement: You are given 2 arrays that are sorted. You need to find the k’th element if the two arrays are sorted and merged.…
Discover More

Posts pagination

Previous 1 … 35 36 37 … 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.