热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

求节点到根的距离的迭代程序

求节点到根的距离的迭代程序原文:https://www.ge

求节点到根的距离的迭代程序

原文:https://www . geeksforgeeks . org/迭代程序查找根节点距离/

给定二叉树的根和其中的一个键 x,求给定键到根节点的距离。距离是指两个节点之间的边数。

示例:

Input : x = 45,
5 is Root of below tree
5
/ \
10 15
/ \ / \
20 25 30 35
\
45
Output : Distance = 3
There are three edges on path
from root to 45.
For more understanding of question,
in above tree distance of 35 is two
and distance of 10 is 1.

相关问题 : 求节点距根距离的递归程序。
迭代方法:


  • 使用级别顺序遍历使用队列迭代遍历树。

  • 保留一个变量电平计数来保持当前电平的轨迹。

  • 为此,每次移动到下一个级别时,在将空节点推入队列时,也会增加变量 levelCount 的值,以便存储当前的级别号。

  • 遍历树时,检查当前级别是否有任何节点与给定的键匹配。

  • 如果是,则返回级别计数。

下面是上述方法的实现:

C++

// C++ program to find distance of a given
// node from root.
#include
using namespace std;
// A Binary Tree Node
struct Node {
    int data;
    Node *left, *right;
};
// A utility function to create a new Binary
// Tree Node
Node* newNode(int item)
{
    Node* temp = new Node;
    temp->data = item;
    temp->left = temp->right = NULL;
    return temp;
}
/* Function to find distance of a node from root
*  root : root of the Tree
*  key : data whose distance to be calculated
*/
int findDistance(Node* root, int key)
{
    // base case
    if (root == NULL) {
        return -1;
    }
    // If the key is present at root,
    // distance is zero
    if (root->data == key)
        return 0;
    // Iterating through tree using BFS
    queue q;
    // pushing root to the queue
    q.push(root);
    // pushing marker to the queue
    q.push(NULL);
    // Variable to store count of level
    int levelCount = 0;
    while (!q.empty()) {
        Node* temp = q.front();
        q.pop();
        // if node is marker, push marker to queue
        // else, push left and right (if exists)
        if (temp == NULL && !q.empty()) {
            q.push(NULL);
            // Increment levelCount, while moving
            // to new level
            levelCount++;
        }
        else if (temp != NULL) {
            // If node at current level is Key,
            // return levelCount
            if (temp->data == key)
                return levelCount;
            if (temp->left)
                q.push(temp->left);
            if (temp->right)
                q.push(temp->right);
        }
    }
    // If key is not found
    return -1;
}
// Driver Code
int main()
{
    Node* root = newNode(5);
    root->left = newNode(10);
    root->right = newNode(15);
    root->left->left = newNode(20);
    root->left->right = newNode(25);
    root->left->right->right = newNode(45);
    root->right->left = newNode(30);
    root->right->right = newNode(35);
    cout <    return 0;
}

Java 语言(一种计算机语言,尤用于创建网站)

// Java program to find distance of a given
// node from root.
import java.util.*;
class GFG
{
// A Binary Tree Node
static class Node
{
    int data;
    Node left, right;
};
// A utility function to create a new Binary
// Tree Node
static Node newNode(int item)
{
    Node temp = new Node();
    temp.data = item;
    temp.left = temp.right = null;
    return temp;
}
/* Function to find distance of a node from root
* root : root of the Tree
* key : data whose distance to be calculated
*/
static int findDistance(Node root, int key)
{
    // base case
    if (root == null)
    {
        return -1;
    }
    // If the key is present at root,
    // distance is zero
    if (root.data == key)
        return 0;
    // Iterating through tree using BFS
    Queue q = new LinkedList();
    // adding root to the queue
    q.add(root);
    // adding marker to the queue
    q.add(null);
    // Variable to store count of level
    int levelCount = 0;
    while (!q.isEmpty())
    {
        Node temp = q.peek();
        q.remove();
        // if node is marker, push marker to queue
        // else, push left and right (if exists)
        if (temp == null && !q.isEmpty())
        {
            q.add(null);
            // Increment levelCount, while moving
            // to new level
            levelCount++;
        }
        else if (temp != null)
        {
            // If node at current level is Key,
            // return levelCount
            if (temp.data == key)
                return levelCount;
            if (temp.left != null)
                q.add(temp.left);
            if (temp.right != null)
                q.add(temp.right);
        }
    }
    // If key is not found
    return -1;
}
// Driver Code
public static void main(String[] args)
{
    Node root = newNode(5);
    root.left = newNode(10);
    root.right = newNode(15);
    root.left.left = newNode(20);
    root.left.right = newNode(25);
    root.left.right.right = newNode(45);
    root.right.left = newNode(30);
    root.right.right = newNode(35);
    System.out.println(findDistance(root, 45));
}
}
// This code is contributed by Rajput-Ji

Python 3

# Python program to find distance of a given
# node from root.
from collections import deque
# A tree binary node
class Node:
    def __init__(self, data):
        self.data = data
        self.left = None
        self.right = None
# Function to find distance of a node from root
# root : root of the Tree
# key : data whose distance to be calculated
def findDistance(root: Node, key: int) -> int:
    # base case
    if root is None:
        return -1
    # If the key is present at root,
    # distance is zero
    if root.data == key:
        return 0
    # Iterating through tree using BFS
    q = deque()
    # pushing root to the queue
    q.append(root)
    # pushing marker to the queue
    q.append(None)
    # Variable to store count of level
    levelCount = 0
    while q:
        temp = q[0]
        q.popleft()
        # if node is marker, push marker to queue
        # else, push left and right (if exists)
        if temp is None and q:
            q.append(None)
            # Increment levelCount, while moving
            # to new level
            levelCount += 1
        elif temp:
            # If node at current level is Key,
            # return levelCount
            if temp.data == key:
                return levelCount
            if temp.left:
                q.append(temp.left)
            if temp.right:
                q.append(temp.right)
    # If key is not found
    return -1
# Driver Code
if __name__ == "__main__":
    root = Node(5)
    root.left = Node(10)
    root.right = Node(15)
    root.left.left = Node(20)
    root.left.right = Node(25)
    root.left.right.right = Node(45)
    root.right.left = Node(30)
    root.right.right = Node(35)
    print(findDistance(root, 45))
# This code is contributed by
# sanjeev2552

C

// C# program to find distance of a given
// node from root.
using System;
using System.Collections.Generic;
class GFG
{
// A Binary Tree Node
class Node
{
    public int data;
    public Node left, right;
};
// A utility function to create a new Binary
// Tree Node
static Node newNode(int item)
{
    Node temp = new Node();
    temp.data = item;
    temp.left = temp.right = null;
    return temp;
}
/* Function to find distance of a node from root
* root : root of the Tree
* key : data whose distance to be calculated*/
static int findDistance(Node root, int key)
{
    // base case
    if (root == null)
    {
        return -1;
    }
    // If the key is present at root,
    // distance is zero
    if (root.data == key)
        return 0;
    // Iterating through tree using BFS
    Queue q = new Queue();
    // adding root to the queue
    q.Enqueue(root);
    // adding marker to the queue
    q.Enqueue(null);
    // Variable to store count of level
    int levelCount = 0;
    while (q.Count!=0)
    {
        Node temp = q.Peek();
        q.Dequeue();
        // if node is marker, push marker to queue
        // else, push left and right (if exists)
        if (temp == null && q.Count!=0)
        {
            q.Enqueue(null);
            // Increment levelCount, while moving
            // to new level
            levelCount++;
        }
        else if (temp != null)
        {
            // If node at current level is Key,
            // return levelCount
            if (temp.data == key)
                return levelCount;
            if (temp.left != null)
                q.Enqueue(temp.left);
            if (temp.right != null)
                q.Enqueue(temp.right);
        }
    }
    // If key is not found
    return -1;
}
// Driver Code
public static void Main(String[] args)
{
    Node root = newNode(5);
    root.left = newNode(10);
    root.right = newNode(15);
    root.left.left = newNode(20);
    root.left.right = newNode(25);
    root.left.right.right = newNode(45);
    root.right.left = newNode(30);
    root.right.right = newNode(35);
    Console.WriteLine(findDistance(root, 45));
}
}
// This code is contributed by Princi Singh

java 描述语言


Output: 

3

推荐阅读
  • 扫描线三巨头 hdu1928hdu 1255  hdu 1542 [POJ 1151]
    学习链接:http:blog.csdn.netlwt36articledetails48908031学习扫描线主要学习的是一种扫描的思想,后期可以求解很 ... [详细]
  • 本文探讨了如何在给定整数N的情况下,找到两个不同的整数a和b,使得它们的和最大,并且满足特定的数学条件。 ... [详细]
  • 从 .NET 转 Java 的自学之路:IO 流基础篇
    本文详细介绍了 Java 中的 IO 流,包括字节流和字符流的基本概念及其操作方式。探讨了如何处理不同类型的文件数据,并结合编码机制确保字符数据的正确读写。同时,文中还涵盖了装饰设计模式的应用,以及多种常见的 IO 操作实例。 ... [详细]
  • 本教程涵盖OpenGL基础操作及直线光栅化技术,包括点的绘制、简单图形绘制、直线绘制以及DDA和中点画线算法。通过逐步实践,帮助读者掌握OpenGL的基本使用方法。 ... [详细]
  • 优化ListView性能
    本文深入探讨了如何通过多种技术手段优化ListView的性能,包括视图复用、ViewHolder模式、分批加载数据、图片优化及内存管理等。这些方法能够显著提升应用的响应速度和用户体验。 ... [详细]
  • 本文将介绍如何编写一些有趣的VBScript脚本,这些脚本可以在朋友之间进行无害的恶作剧。通过简单的代码示例,帮助您了解VBScript的基本语法和功能。 ... [详细]
  • 本文介绍了如何使用JQuery实现省市二级联动和表单验证。首先,通过change事件监听用户选择的省份,并动态加载对应的城市列表。其次,详细讲解了使用Validation插件进行表单验证的方法,包括内置规则、自定义规则及实时验证功能。 ... [详细]
  • 本文讨论了如何根据特定条件动态显示或隐藏文件上传控件中的默认文本(如“未选择文件”)。通过结合CSS和JavaScript,可以实现更灵活的用户界面。 ... [详细]
  • 本文详细介绍了C语言中链表的两种动态创建方法——头插法和尾插法,包括具体的实现代码和运行示例。通过这些内容,读者可以更好地理解和掌握链表的基本操作。 ... [详细]
  • Hadoop入门与核心组件详解
    本文详细介绍了Hadoop的基础知识及其核心组件,包括HDFS、MapReduce和YARN。通过本文,读者可以全面了解Hadoop的生态系统及应用场景。 ... [详细]
  • 使用GDI的一些AIP函数我们可以轻易的绘制出简 ... [详细]
  • 本题探讨如何通过最大流算法解决农场排水系统的设计问题。题目要求计算从水源点到汇合点的最大水流速率,使用经典的EK(Edmonds-Karp)和Dinic算法进行求解。 ... [详细]
  • 本文详细探讨了HTML表单中GET和POST请求的区别,包括它们的工作原理、数据传输方式、安全性及适用场景。同时,通过实例展示了如何在Servlet中处理这两种请求。 ... [详细]
  • 深入解析Redis内存对象模型
    本文详细介绍了Redis内存对象模型的关键知识点,包括内存统计、内存分配、数据存储细节及优化策略。通过实际案例和专业分析,帮助读者全面理解Redis内存管理机制。 ... [详细]
  • 全面解析运维监控:白盒与黑盒监控及四大黄金指标
    本文深入探讨了白盒和黑盒监控的概念,以及它们在系统监控中的应用。通过详细分析基础监控和业务监控的不同采集方法,结合四个黄金指标的解读,帮助读者更好地理解和实施有效的监控策略。 ... [详细]
author-avatar
daoyuanzhi
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有