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++可视化 横向打印二叉树(连线、规整)

最近本人在和 avl 树、红黑树进行“友好交流”,特此水一篇可视化辅助。直接放结果 :

一、 二叉树实现?

#include <iostream>
#include <vector>
using namespace std;
#define MAX_SIZE 1000

struct node
{
    int key;
    int l, r;
};

node tree[MAX_SIZE] = {{0, 1, 0}};
int cnt;

void add(int key, int &root = tree[0].l)
{
    if (root == 0)
    {
        root = ++cnt;
        tree[cnt] = {key};
    }
    else if (key < tree[root].key)
        add(key, tree[root].l);
    else
        add(key, tree[root].r);
}

二、打印函数

#include <iostream>
#include <vector>
using namespace std;

inline void trans(vector<string> &x, string before, string after)//转换第一个匹配的字符串
{
    for (auto &p : x)
        if (p == before)
        {
            p = after;
            break;
        }
}

void show(int root, vector<string> pre = vector<string>(0))
{
    auto &p = tree[root];

    if (p.key != 0)
    {
        vector<string> temp(pre);
        trans(temp, "┌──", "   ");
        trans(temp, "└──", "│  ");
        temp.push_back("┌──");
        show(p.l, temp);
    }

    for (auto &i : pre)
        cout << i;
    if (p.key == 0)
        cout << "null" << endl;
    else
        cout << p.key << endl;

    if (p.key != 0)
    {
        vector<string> temp(pre);
        trans(temp, "┌──", "│  ");
        trans(temp, "└──", "   ");
        temp.push_back("└──");
        show(p.r, temp);
    }
}


// cout << string("┌──").size() << endl;
// cout << string("├──").size() << endl;
// cout << string("└──").size() << endl;
// cout << string("│  ").size() << endl;
// cout << string("   ").size() << endl;

三、完整代码

更新:引入删除功能?

#include <iostream>
#include <vector>
#include <time.h>
using namespace std;
#define MAX_SIZE 1000

struct node
{
    int key;
    int l, r;
};

node tr[MAX_SIZE] = {{0, 0, 1}};
int cnt;

void add(int key, int &root = tr[0].r)
{
    if (root == 0)
    {
        root = ++cnt;
        tr[cnt] = {key, 0, 0};
    }
    else if (key < tr[root].key)
        add(key, tr[root].l);
    else if (key > tr[root].key)
        add(key, tr[root].r);
}

void del(int key, int &root = tr[0].r)
{
    if (root == 0)
        return;
    auto &p = tr[root];
    if (key < p.key)
        del(key, p.l);
    else if (key > p.key)
        del(key, p.r);
    else
    {
        if (p.l == 0 && p.r == 0)
            root = 0;
        else if (p.l == 0 && p.r != 0)
            root = p.r;
        else if (p.l != 0 && p.r == 0)
            root = p.l;
        else if (tr[p.r].l == 0) //后继是右子树的根
        {
            tr[p.r].l = p.l;
            root = p.r;
        }
        else
        {
            int last = root;
            root = p.r;
            while (tr[root].l != 0) //找右子树的最小值,维护父指针last
            {
                last = root;
                root = tr[root].l;
            }
            tr[last].l = tr[root].r;
            tr[root].l = p.l;
            tr[root].r = p.r;
        }
    }
}

//
void show(int root = 1, vector<string> pre = vector<string>(0));

int main()
{
    srand(time(0));
    for (int i = 1; i <= 20; ++i)
        add(rand() % 100);
    show();
    int ch = 1;
    do
    {
        int temp;
        puts("请输出操作码:");
        puts("1:打印");
        puts("2:删除");
        puts("0:退出");
        cin >> ch;
        if (ch == 1)
            show();
        else if (ch == 2)
        {
            cin >> temp;
            del(temp);
        }
    } while (ch);
}

inline void trans(vector<string> &x, string before, string after)
{
    for (auto &p : x)
        if (p == before)
        {
            p = after;
            break;
        }
}

void show(int root, vector<string> pre)
{
    auto &p = tr[root];

    if (p.key != 0)
    {
        vector<string> temp(pre);
        trans(temp, "┌──", "   ");
        trans(temp, "└──", "│  ");
        temp.push_back("┌──");
        show(p.l, temp);
    }

    for (auto &i : pre)
        cout << i;
    if (p.key == 0)
        cout << "null" << endl;
    else
        cout << p.key << endl;

    if (p.key != 0)
    {
        vector<string> temp(pre);
        trans(temp, "┌──", "│  ");
        trans(temp, "└──", "   ");
        temp.push_back("└──");
        show(p.r, temp);
    }
}

// cout << string("┌──").size() << endl;
// cout << string("├──").size() << endl;
// cout << string("└──").size() << endl;
// cout << string("│  ").size() << endl;
// cout << string("   ").size() << endl;

  数据结构与算法 最新文章
【力扣106】 从中序与后续遍历序列构造二叉
leetcode 322 零钱兑换
哈希的应用:海量数据处理
动态规划|最短Hamilton路径
华为机试_HJ41 称砝码【中等】【menset】【
【C与数据结构】——寒假提高每日练习Day1
基础算法——堆排序
2023王道数据结构线性表--单链表课后习题部
LeetCode 之 反转链表的一部分
【题解】lintcode必刷50题<有效的括号序列
上一篇文章      下一篇文章      查看所有文章
加:2021-12-24 18:44:08  更:2021-12-24 18:45:02 
 
开发: 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/26 16:56:55-

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