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
onDecember 26, 2024

Perform InOrder traversal on a Binary Tree by without Recursion

Question: Given a binary tree root node, perform In Order traversal by using stacks. Example: Consider the image given below: InOrder…
Discover More
ProDeveloperTutorial
onDecember 26, 2024

Perform PreOrder traversal on a Binary Tree by without Recursion

Question: Given a binary tree root node, perform PreOrder traversal by using stacks. Example: Consider the image given below: PreOrder…
Discover More
ProDeveloperTutorial
onDecember 26, 2024

Display Reverse Level Order Traversal by using queue

Question: Given a binary tree root node, display all the nodes in reverse level order traversal. Example: Consider the image given below: Form…
Discover More
ProDeveloperTutorial
onDecember 26, 2024

Display nodes at given level in Binary Tree

Question: Given a binary tree root node and a level, display all the nodes present in that level. Example: Consider the image given below:…
Discover More
ProDeveloperTutorial
onDecember 26, 2024

Get Number of Nodes in a Binary Tree

Question: Given a binary tree, get the total number of nodes in it. Example: Consider the image given below: Form the image above, The total…
Discover More
ProDeveloperTutorial
onDecember 26, 2024

Get difference between values at Even and Odd level in a binary tree

Question: Given a binary tree, get the difference of the sum of the nodes at odd level and sum of the nodes at even level. Example: Consider…
Discover More
ProDeveloperTutorial
onDecember 26, 2024

Given an array, that has zero. Move all the zero at the end, but maintain the relative order of other elements.

Example: array = [3, 4, 0, 5, 6, 0 , 7, 1, 0, 3] Output: [3, 4, 5, 6, 7, 1, 3, 0, 0, 0] The solution is very simple. We take 2 loops. In the…
Discover More
ProDeveloperTutorial
onDecember 26, 2024

Given a linked list, check if it is a palindrome or not. Solution in C++

Solution to this problem can be found in 3 steps: 1. First find the middle of the linked list 2. Reverse the linked list from the middle 3.…
Discover More
ProDeveloperTutorial
onDecember 26, 2024

C++ program to implement queue using stacks.

So our queue will be having following below functions: my_push(n) This function should insert the element “n” at the end of the queue my_pop()…
Discover More
ProDeveloperTutorial
onDecember 26, 2024

You are given a string that contain a basic expression, calculate the result. Solution in C++.

Example: “ 1 + 3” = 4 Multiplication and division signs are not allowed. Only positive and negative numbers are allowed. This problem can be…
Discover More

Posts pagination

Previous 1 … 49 50 51 … 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.