当前位置:网站首页>【剑指offer】序列化二叉树
【剑指offer】序列化二叉树
2022-07-06 08:46:00 【保住头发的破风小子】
解题思路
序列化时,可以通过各种遍历方法,例如层序遍历、递归遍历对二叉树进行遍历,遍历过程中将每个节点的值拼接到字符串中,注意每个节点之间用一个标识符隔开,例如,
,这是为了防止节点的值超过个位数。
反序列化则根据序列化的过程进行相应的解码,不同的反序列化方式有不同的技巧,下面分别使用层序遍历和先序遍历两种方法进行求解。
解法一:层序遍历
- 序列化:通过队列进行遍历,然后生成序列化的字符串,比较常规。
- 反序列化:稍微有点难度。首先对
res
按照,
进行切分得到String数组strs
,每个位置表示一个节点的值。和序列化一样,也需要使用一个队列进行操作,注意每次需要取数组strs
中的两个元素,即构建当前节点的左右子树,然后分别把左右子树加入队列中。
import java.util.*;
public class Solution {
String Serialize(TreeNode root) {
String str = "";
if (root == null)
return str;
Queue<TreeNode> queue = new LinkedList<>();
queue.add(root);
str += root.val + ",";
while (!queue.isEmpty()) {
TreeNode top = queue.poll();
if (top.left == null)
str += "#";
else {
queue.add(top.left);
str += top.left.val;
}
str += ',';
if (top.right == null)
str += "#";
else {
queue.add(top.right);
str += top.right.val;
}
str += ',';
}
return str;
}
TreeNode Deserialize(String str) {
if (str.length() == 0)
return null;
int i = 1;
String strList[] = str.split(",");
TreeNode root = new TreeNode(Integer.parseInt(strList[0]));
Queue<TreeNode> queue = new LinkedList<>();
queue.add(root);
while (!queue.isEmpty()) {
TreeNode top = queue.poll();
// 左子树
if (strList[i].equals("#"))
top.left = null;
else {
top.left = new TreeNode(Integer.parseInt(strList[i]));
queue.add(top.left);
}
i++;
// 右子树
if (strList[i].equals("#"))
top.right = null;
else {
top.right = new TreeNode(Integer.parseInt(strList[i]));
queue.add(top.right);
}
i++;
}
return root;
}
}
解法二:先序遍历
- 序列化:定义全局字符串
res
,递归的时候记录遍历到的节点值,遍历完一个节点后,在其后加,
标识符。 - 反序列化:稍微有点难度。首先对
res
按照,
进行切分得到String数组strs
,每个位置表示一个节点的值。定义全局变量ind
,用来记录当前遍历到strs
的位置,如果当前位置是#
,表示为空,直接返回null
;否则新建一个节点node
,并递归构建其左右子树,注意,在递归前判断数组是否越界,如果inds++
后等于strs
的长度,则表明已经遍历完数组,此时返回node
(注意数组越界的判断不能放在开头,否则会写不下去,因为不知道返回什么了)
import java.util.*;
public class Solution {
public String res = "";
public int ind = 0;
String Serialize(TreeNode root) {
if (root == null) {
res += "#,";
return res;
}
res += root.val + ",";
Serialize(root.left);
Serialize(root.right);
return res;
}
TreeNode deserialize(String[] strs) {
if (strs[ind].equals("#")) {
ind++;
return null;
}
TreeNode node = new TreeNode(Integer.parseInt(strs[ind]));
ind++;
if (ind >= strs.length)
return node;
node.left = deserialize(strs);
node.right = deserialize(strs);
return node;
}
TreeNode Deserialize(String str) {
String[] strs = str.split(",");
return deserialize(strs);
}
}
边栏推荐
- MySQL learning records 12jdbc operation transactions
- 角色动画(Character Animation)的现状与趋势
- 电脑F1-F12用途
- Deep analysis of C language data storage in memory
- 【嵌入式】Cortex M4F DSP库
- Fairguard game reinforcement: under the upsurge of game going to sea, game security is facing new challenges
- ESP8266-RTOS物联网开发
- pytorch训练好的模型在加载和保存过程中的问题
- 可变长参数
- UnsupportedOperationException异常
猜你喜欢
marathon-envs项目环境配置(强化学习模仿参考动作)
ROS编译 调用第三方动态库(xxx.so)
Roguelike游戏成破解重灾区,如何破局?
Deep analysis of C language data storage in memory
MySQL learning record 11jdbcstatement object, SQL injection problem and Preparedstatement object
Process of obtaining the electronic version of academic qualifications of xuexin.com
Using pkgbuild:: find in R language_ Rtools check whether rtools is available and use sys The which function checks whether make exists, installs it if not, and binds R and rtools with the writelines
ROS compilation calls the third-party dynamic library (xxx.so)
JS native implementation shuttle box
C語言雙指針——經典題型
随机推荐
Variable length parameter
Simple use of promise in uniapp
CSP first week of question brushing
LeetCode:剑指 Offer 42. 连续子数组的最大和
Crash problem of Chrome browser
TCP/IP协议
Is it safe to open an account in Zheshang futures?
Research and investment forecast report of citronellol industry in China (2022 Edition)
After PCD is converted to ply, it cannot be opened in meshlab, prompting error details: ignored EOF
超高效!Swagger-Yapi的秘密
vb. Net changes with the window, scales the size of the control and maintains its relative position
Promise 在uniapp的简单使用
Analysis of the source code of cocos2d-x for mobile game security (mobile game reverse and protection)
TDengine 社区问题双周精选 | 第三期
企微服务商平台收费接口对接教程
JVM quick start
torch建立的网络模型使用torchviz显示
Niuke winter vacation training 6 maze 2
Double pointeur en langage C - - modèle classique
C語言雙指針——經典題型