C++ 构建并复制二叉树
使用C++构建一个二叉树并复制、输出。
程序:
#include <stdio.h> #include <stdlib.h> //#include <cstdio> #include <vector> #include<iostream> #include <stack> #include<cstdlib> #include <string> using namespace std; struct TreeNode // 定义二叉树 { int val; // 当前节点值用val表示 struct TreeNode *left; // 指向左子树的指针用left表示 struct TreeNode *right; // 指向右子树的指针用right表示 TreeNode(int x) :val(x), left(NULL), right(NULL) { } // 初始化当前结点值为x,左右子树为空 }; //创建树 TreeNode* insert(TreeNode* tree, int value) { TreeNode* node = (TreeNode*)malloc(sizeof(TreeNode)); // 创建一个节点 node->val = value; // 初始化节点 // malloc函数可以分配长度 node->left = NULL; node->right = NULL; TreeNode* temp = tree; // 从树根开始 while (temp != NULL) { if (value < temp->val) // 小于根节点就进左子树 { if (temp->left == NULL) { temp->left = node; // 新插入的数为temp的左子树 return tree; } else // 下一轮判断 temp = temp->left; } else // 否则进右子树 { if (temp->right == NULL) { temp->right = node; // 新插入的数为temp的右子树 return tree; } else // 下一轮判断 temp = temp->right; } } return tree; } // ************* 输出图形二叉树 ************* void output_impl(TreeNode* 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(TreeNode* root) { if (root->right) { output_impl(root->right, false, ""); } cout << root->val << endl; if (root->left) { output_impl(root->left, true, ""); } system("pause"); } // ****************************************** void CopyBiTree(TreeNode* root, TreeNode* newroot) // 复制二叉树 { if (root == nullptr) return; else { newroot->val = root->val; if (root->left != nullptr) newroot->left = new TreeNode(0); if (root->right != nullptr) newroot->right = new TreeNode(0); CopyBiTree(root->left, newroot->left); CopyBiTree(root->right, newroot->right); } //output(newroot); } // ====================测试代码==================== int main() { TreeNode* tree =new TreeNode(10); // 树的根节点 TreeNode* 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); TreeNode* mirroot = new TreeNode(10); CopyBiTree(treeresult, mirroot); // 复制二叉树 output(treeresult); // 输出原二叉树 output(mirroot); // 输出复制的二叉树 }
结果:
学习更多编程知识,请关注我的公众号:
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 无需6万激活码!GitHub神秘组织3小时极速复刻Manus,手把手教你使用OpenManus搭建本
· Manus爆火,是硬核还是营销?
· 终于写完轮子一部分:tcp代理 了,记录一下
· 别再用vector<bool>了!Google高级工程师:这可能是STL最大的设计失误
· 单元测试从入门到精通