面试题目:(6)翻转二叉树

news/2024/11/14 12:48:16/

题目

  • 翻转二叉树 (中间对称翻转,等于镜像)
  • 给你一棵二叉树的根节点 root ,翻转这棵二叉树,并返回其根节点。
  • 示例1:
    • 输入:root = [4,2,7,1,3,6,9]
    • 输出:[4,7,2,9,6,3,1]
  • 示例1:
    • 输入:root = [2,1,3]
    • 输出:[2,3,1]  
  • 示例1:
    • 输入:root = []
    • 输出:[]
  • 提示:
    • 树中节点数目范围在 [0, 100] 内
    • -100 <= Node.val <= 100
    • * struct TreeNode {
    • *     int val;
    • *     struct TreeNode *left;
    • *     struct TreeNode *right;
    • * };

代码

#include <stdio.h>
#include <stdlib.h>
#include <ctype.h>
#include <string.h>struct TreeNode {int val;struct TreeNode *left;struct TreeNode *right;
};
struct TreeNode * crete_node(int number)
{struct TreeNode *new_node = (struct TreeNode *)malloc(sizeof(struct TreeNode));new_node->val = number;new_node->left = NULL;new_node->right = NULL;return new_node;
}
struct TreeNode * add_tree(struct TreeNode *tree, int number, int count)
{struct TreeNode *new_node = crete_node(number);if (count == 1){tree = new_node;}else{struct TreeNode *current = tree;int position = count;// 找到插入位置,bufor (int i = 1; i < count / 2; i *= 2) {if (position & 1) {if (!current->right) {current->right = new_node;return tree;}current = current->right;} else {if (!current->left) {current->left = new_node;return tree;}current = current->left;}position >>= 1;}if (position & 1) {current->right = new_node;} else {current->left = new_node;}}return tree;}// 层序遍历打印二叉树
void printLevelOrder(struct TreeNode* root) {if (root == NULL) {printf("[]\n");return;}struct TreeNode* queue[100];int front = 0, rear = 0;queue[rear++] = root;printf("[");while (front < rear) {struct TreeNode* node = queue[front++];if (node) {printf("%d", node->val);if (node->left != NULL) queue[rear++] = node->left;if (node->right != NULL) queue[rear++] = node->right;}if (front < rear) printf(", ");}printf("]\n");
}void zhuan_list(struct TreeNode* root)
{if (root == NULL) return;struct TreeNode* temp = root->left;root->left = root->right;root->right = temp;zhuan_list(root->left);zhuan_list(root->right);
}
int main()
{char s[256] ="";printf("root = ");fgets(s,sizeof(s),stdin);s[strcspn(s, "\n")] = '\0';int number = 0;struct TreeNode *tree = NULL;int count = 1;for (int i = 0; i < strlen(s); i++){if (s[i]<= '9' && s[i] >= '0'){number = number * 10 +(s[i] - '0');}else if(s[i] == ',' || s[i] == ']'){tree = add_tree(tree,number,count);count++;number = 0;}}printLevelOrder(tree);zhuan_list(tree);printLevelOrder(tree);return 0;
}

解析

  • 接收字符串后去掉换行符
  • 遍历字符串,遇到数字保存,遇到",“和"]"就新建节点组成树
    • 组成树
      • 传入这是第几个节点,进行除于2来找到父节点
      • 通过二进制的最后一位数来决定是左子树还是右子树,一层一层的进入
      • 进入了下一层也就是进入了新节点,判断左子树是否为空先,在判断右子树,哪个为空就进哪一个
      • 但根节点下面的两个数字为2和3,都进入不了for循环,要单独通过最后一位来进行加载
  • 打印树
  • 翻转树
    • 递归函数翻转
      • 判断是否为空,为空退出
      • 将左右节点翻转
      • 再分别递归进入左右子树进行翻转

http://www.ppmy.cn/news/1512791.html

相关文章

2024 NVIDIA Summer Camp Day1:构建RAG多模态AI Agent

下载材料和课件等 课程相关资料下载链接: https://pan.baidu.com/s/15Y-gmsfeYCgKF-M3TJZVgg?pwdfafe 提取码: fafe 1.课件 链接&#xff1a;https://pan.baidu.com/s/15JTy9CqnesXSlPiwwrUmjA?pwd1111 提取码&#xff1a;1111 2.phi3量化大模型 链接&#xff1a;http…

vivado中出现ERROR: [Labtools 27-2220]检测不出开发板

emmm,解决方法&#xff0c;重启电脑&#xff0c;再重新打开vivado&#xff0c;然后电脑会弹窗问允不允许vivado使用网络&#xff0c;同意后&#xff0c;就可以检测出来了。 verilog中出现ERROR: [Labtools 27-2220] Launch Error: Unable to launch local cs_server executable…

CSS的:current伪类:精准定位当前活动元素

CSS&#xff08;层叠样式表&#xff09;是控制网页样式的核心语言。随着CSS4的提出&#xff0c;一系列新的选择器被引入&#xff0c;其中:current伪类便是这些新特性之一。:current伪类允许开发者选择当前处于活动状态的元素&#xff0c;这在创建动态和交互性网页时非常有用。本…

linux容器基础-namespace-3(pid)

pid namespace pid namespace表示隔离一个具有独立PID的运行环境。 在每一个pid namespace中&#xff0c;进程的pid都从1开始&#xff0c;且和其他pid namespace中的PID互不影响。 这意味着&#xff0c;不同pid namespace中可以有相同的PID值。 在介绍pid namespace之前&#…

docker使用的一些坑

docker使用的一些坑 1、Centos7安全Selinux禁止了一些安全权限&#xff0c;导致mysql和mariadb在进行挂载/var/lib/mysql时&#xff0c;容器无法启动&#xff0c;三个解决方案 &#xff08;1&#xff09;在docker run中加入 –privilegedtrue 给容器加上特定权限 如原命令 d…

python | 图片转换为 pdf 实现方法

目录 一、PIL 库简介及安装使用方法 &#xff08;一&#xff09;python 不同版本下 PIL 的使用方法 二、图片转换为 pdf 的两种实现方法 &#xff08;一&#xff09;简易版——pdf 页面尺寸跟随图片大小 &#xff08;二&#xff09;常用版——pdf 每页尺寸统一为 A4 一、P…

搭建ELK日志采集与分析系统

SpringCloud微服务实战——企业级开发框架 &#x1f49d;&#x1f49d;&#x1f49d;欢迎来到我的博客&#xff0c;很高兴能够在这里和您见面&#xff01;希望您在这里可以感受到一份轻松愉快的氛围&#xff0c;不仅可以获得有趣的内容和知识&#xff0c;也可以畅所欲言、分享您…

回归预测 | Matlab实现BES-ESN秃鹰搜索算法优化回声状态网络多输入单输出回归预测

回归预测 | Matlab实现BES-ESN秃鹰搜索算法优化回声状态网络多输入单输出回归预测 目录 回归预测 | Matlab实现BES-ESN秃鹰搜索算法优化回声状态网络多输入单输出回归预测效果一览基本介绍程序设计参考资料 效果一览 基本介绍 1.Matlab实现BES-ESN秃鹰搜索算法优化回声状态网络…