IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> C++知识库 -> 判断二叉树的叶子是否在同一层 c++ -> 正文阅读

[C++知识库]判断二叉树的叶子是否在同一层 c++

Judge if the leaves of a tree are in the same level or not:

1. Iteration Version:

  • Description: ?

If the tree is null,return true. ?

Else,using the level order traversal to examine every levels of the tree and judge according to wheather all the leaves are at the same level.

  • Pseudocode: ?
Algoritm: SameLevel(node* root)
Input:a pointer of node pointing to a root of a tree.
Output:a bool which is true when all the leaves(if exsits) are at the same level and false vice versa.

queue<int> tem;
if root == NULL then  
    return true;
tem.push(root);
while tem.size() != 0 do
    flag <- -1; //-1 for uninitialized,0 for non-leaf nodes before,1 for leaves before
    size <- tem.size(); //record the node number of this level
    for i <- 0 to i < size do
        NodeTem <- tem.front();
        tem.pop();
        if NodeTem.leftc == NULL && Node.right == NULL then  
            if flag == -1 then
            flag <- 1;
            else if flag == 0 then
            return false;
            
        else
            if flag == -1 then
            flag <- 0;
            else if flag == 1 then
            return false;
            //push the next level into the queue
            if nodeTem.leftc != NULL then  
                tem.push(nodeTem.leftc);
            if nodeTem.rightc != NULL then  
                tem.push(nodeTem.rightc);

return true;
  • Analysis: ?

? time : O(n)

? space : O(n)

  • Thoughts: ?

? 1. the key of this algorithm is how can we process the same level of a tree and how we judge the same level nodes.

? 2. i have wrote the pseudocode and it did help me figure out how i'll write the code but it's hard for me to make sure the correctness of the pseudocode and i still debug my code as if the pseudocode is somehow pointless.how can i make the best of the pseudocode?

? 3. this is a rather explicit and strightforward method basicall just reinterpret the definition.

2. Recursion Version:

Description: ?

? Examine every node of the tree :

? if it has no children,then continue;

? if it has one child,then examine the child;

? if it has two children,then examine if the height of the two children is the same ?and then seperately examine the two children;

? until all the nodes are examined can we reach a conclusion.

  • ?Pseudocode:
Algoritm: SameLevel(node* root)

Input:a pointer of node pointing to a root of a (sub)tree.

Output:a bool which is true when all the leaves(if exsits) are at the same level and false vice versa.



int height(node* root);//return the height of the tree



if NodeTem.leftc == NULL && Node.rightc == NULL then

? ? return true

else if NodeTem.leftc != NULL && NodeTem.rightc == NULL then

? ? if SameLevel(NodeTem.leftc) then

? ? ? ? return true;

? ? else

? ? ? ? return false;

else if NodeTem.rightc != NULL && NodeTem.leftc == NULL then

? ? if SameLevel(NodeTem.rightc) then

? ? ? ? return true;

? ? else

? ? ? ? return false;

else

? ? if height(NodeTem.rightc) == height(NodeTem.leftc) && SameLevel(NodeTem.rightc) && SameLevel(NodeTem.leftc)

? ? ? ? return true;

? ? else

? ? ? ? return false;

  C++知识库 最新文章
【C++】友元、嵌套类、异常、RTTI、类型转换
通讯录的思路与实现(C语言)
C++PrimerPlus 第七章 函数-C++的编程模块(
Problem C: 算法9-9~9-12:平衡二叉树的基本
MSVC C++ UTF-8编程
C++进阶 多态原理
简单string类c++实现
我的年度总结
【C语言】以深厚地基筑伟岸高楼-基础篇(六
c语言常见错误合集
上一篇文章      下一篇文章      查看所有文章
加:2021-11-19 17:27:06  更:2021-11-19 17:29:50 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/24 8:05:24-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码