• Courses
  • Tutorials
  • Jobs
  • Practice
  • Contests
May 04, 2024 |1.3K Views
PROBLEM OF THE DAY: 03/05/24 - K distance from root
Description
Discussion

Welcome to the daily solving of our PROBLEM OF THE DAY with Siddharth Hazra. We will discuss the entire problem step-by-step and work towards developing an optimized solution. This will not only help you brush up on your concepts of Binary Tree but also build up problem-solving skills.

In this problem, we are given a binary tree having n nodes and an integer k. Print all nodes that are at distance k from the root (root is considered at distance 0 from itself). Nodes should be printed from left to right.

Example :

Input:
k = 0
     1
   /   \
  3     2
Output: 
1
Explanation: 
1 is the only node which is 0 distance from the root 1.

Give the problem a try before going through the video. All the best!!!
Problem Link: https://www.geeksforgeeks.org/problems/k-distance-from-root/1