面试题:序列化二叉树

Posted aaron12

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了面试题:序列化二叉树相关的知识,希望对你有一定的参考价值。

题目描述:请实现两个函数,分别用来序列化和反序列化二叉树

思路:遍历

public class Solution {
    int index=-1;
    String Serialize(TreeNode root) {
        StringBuffer sb=new StringBuffer();
        if(root==null){
            sb.append("#,");
            return sb.toString();
        }
        sb.append(root.val+",");
        sb.append(Serialize(root.left));
        sb.append(Serialize(root.right));
        return sb.toString();
    }
    TreeNode Deserialize(String str) {
        index++;
        if(index>=str.length()) return null;
        String[] strr=str.split(",");
        TreeNode node=null;
        if(!strr[index].equals("#")){
            node=new TreeNode(Integer.valueOf(strr[index]));
            node.left=Deserialize(str);
            node.right=Deserialize(str);
        }
        return node;
    }
}

 

以上是关于面试题:序列化二叉树的主要内容,如果未能解决你的问题,请参考以下文章

面试题:序列化二叉树

面试题37. 序列化二叉树

面试题37. 序列化二叉树

二叉树相关面试题数据结构

大厂校招的一典型面试题:二叉树的序列化和反序列化

与二叉树有关的编程题的Java代码实现