美文网首页C++
C++ 自定义二叉树并输出二叉树图形

C++ 自定义二叉树并输出二叉树图形

作者: 代码的路 | 来源:发表于2022-08-04 09:34 被阅读0次

原文链接

使用C++构建一个二叉树并输出。

输入

输入根节点为10,依次输入6、4、8、14、12、16

代码如下:

#include <stdio.h>
#include <stdlib.h>
#include <vector>
#include<iostream>
#include <stack> 
#include<cstdlib>

#include <string>
using namespace std;


struct TreeLinkNode         // 定义二叉树
{
    int val;                       // 当前节点值用val表示
    struct TreeLinkNode *left;     // 指向左子树的指针用left表示
    struct TreeLinkNode *right;    // 指向右子树的指针用right表示
    struct TreeLinkNode *parent;  //指向父节点的指针用parent表示
    TreeLinkNode(int x) :val(x), left(NULL), right(NULL), parent(NULL) { } // 初始化当前结点值为x,左右子树、父节点为空
};

//创建树
TreeLinkNode* insert(TreeLinkNode* tree, int value)
{
    TreeLinkNode* node = (TreeLinkNode*)malloc(sizeof(TreeLinkNode)); // 创建一个节点
    node->val = value;      // 初始化节点
    node->left = NULL;
    node->right = NULL;
    node->parent = NULL;

    TreeLinkNode* temp = tree;      // 从树根开始
    while (temp != NULL)
    {
        if (value < temp->val)  // 小于根节点就进左子树
        {
            if (temp->left == NULL)
            {
                temp->left = node;  // 新插入的数为temp的左子树
                node->parent = temp; // temp为新插入的数的父节点
                return tree;
            }
            else           // 下一轮判断
                temp = temp->left;
        }
        else           // 否则进右子树
        {    

            if (temp->right == NULL)
            {
                temp->right = node;  // 新插入的数为temp的右子树
                node->parent = temp; // temp为新插入的数的父节点
                return tree;
            }
            else           // 下一轮判断
                temp = temp->right;
        }
    }
    return tree;
}
 

//  ************* 输出图形二叉树 *************
void output_impl(TreeLinkNode* n, bool left, string const& indent)
{
    if (n->right)
    {
        output_impl(n->right, false, indent + (left ? "|     " : "      "));
    }
    cout << indent;
    cout << (left ? '\\' : '/');
    cout << "-----";
    cout << n->val << endl;
    if (n->left)
    {
        output_impl(n->left, true, indent + (left ? "      " : "|     "));
    }
}
void output(TreeLinkNode* root)
{
    if (root->right)
    {
        output_impl(root->right, false, "");
    }
    cout << root->val << endl;
    if (root->left)
    {
        output_impl(root->left, true, "");
    }
    system("pause");
}
//  ***************************************



// ====================测试代码====================
int main()
{

    TreeLinkNode tree = TreeLinkNode(10);       // 树的根节点
    TreeLinkNode* treeresult;

    treeresult = insert(&tree, 6);         // 输入n个数并创建这个树
    treeresult = insert(&tree, 4);
    treeresult = insert(&tree, 8);
    treeresult = insert(&tree, 14);
    treeresult = insert(&tree, 12);
    treeresult = insert(&tree, 16);

    output(treeresult);         //  输出图形二叉树

}

输出

学习更多编程知识,请关注我的公众号:

代码的路

相关文章

  • leetCode进阶算法题+解析(六十三)

    输出二叉树 题目:在一个 m*n 的二维字符串数组中输出二叉树,并遵守以下规则: 行数 m 应当等于给定二叉树的高...

  • 判别二叉树

    程序框架搭建 Int main (){建二叉树1建二叉树2判别是否同构并输出Return 0;}需要设计的函数读数...

  • 二叉树常见操作的 C++ 实现(二)

    接着之前的内容,本节继续讲述二叉树中常见操作的 C++ 实现。 上节,我们介绍并实现了二叉树的按前序遍历创建和递归...

  • 《剑指Offer》-27.二叉树的镜像

    题干 请完成一个函数,输入一棵二叉树,该函数输出它的镜像。二叉树节点的定义如下: 解题思路 输入二叉树 输出二叉树...

  • 二叉树的镜像

    操作给定的二叉树,将其变换为源二叉树的镜像。 C++ 代码

  • 二叉树遍历应用

    【例】输出二叉树中的叶子节点 【例】求二叉树高度

  • LeetCode 226.翻转二叉树

    翻转一棵二叉树。 C++

  • 18二叉树的镜像

    题目描述 操作给定的二叉树,将其变换为源二叉树的镜像。 输出描述 输出描述 Java实现

  • 二叉树和二叉搜索树

    二叉树 二叉树中的每一个节点最多只有两个子节点,通常被称为左子节点、 右子节点 二叉树的Swift实现 二叉树图形...

  • leecode刷题(24)-- 翻转二叉树

    leecode刷题(24)-- 翻转二叉树 翻转二叉树 翻转一棵二叉树。 示例: 输入: 输出: 备注:这个问题是...

网友评论

    本文标题:C++ 自定义二叉树并输出二叉树图形

    本文链接:https://www.haomeiwen.com/subject/ycfpwrtx.html