资讯专栏INFORMATION COLUMN

LeetCode 297. Serialize and Deserialize Binary Tre

cc17 / 3193人阅读

摘要:题目大意将二叉树序列化,返回序列化的,和反序列化还原。解题思路技巧在于将记录为便于将来判断。的思想将每一层记录下来,反序列化时也按照层级遍历的方法依次设置为上一个里面的元素的左孩子和右孩子。变种,可以要求输出一个,而不是

LeetCode 297. Serialize and Deserialize Binary Tree

题目大意: 将二叉树序列化,返回序列化的String,和反序列化还原。

解题思路:
技巧在于将null记录为#便于将来判断。有两种解法。

Level Order Traversal - BFS的思想将每一层记录下来,反序列化时也按照层级遍历的方法依次设置为上一个queue里面的元素的左孩子和右孩子。

更好的方法为preorder traversal,是可以handle变种题目的解法,利用preorder是root—>left->right的顺序,用一个deque来不断把头部的元素poll出,递归调用函数构建还原二叉树。

</>复制代码

  1. //Solution 1: using Level order traversal
  2. public static String serialize(TreeNode root) {
  3. if (root == null ) {
  4. return "";
  5. }
  6. StringBuilder sb = new StringBuilder();
  7. Queue q = new LinkedList();
  8. q.offer(root);
  9. while(!q.isEmpty()) {
  10. TreeNode curr = q.poll();
  11. if (curr == null) {
  12. sb.append("#,");
  13. } else {
  14. sb.append(curr.val + ",");
  15. q.offer(curr.left);
  16. q.offer(curr.right);
  17. }
  18. }
  19. sb.deleteCharAt(sb.length() - 1);
  20. return sb.toString();
  21. }
  22. /**
  23. * 1
  24. * /
  25. * 2 3
  26. * / /
  27. * 4 2 4
  28. * /
  29. * 4
  30. * [1,2,3,4,#,2,4,4]
  31. * @param input
  32. * @return
  33. */
  34. public static TreeNode deSerialize(String input) {
  35. if (input == null || input.length() == 0) {
  36. return null;
  37. }
  38. String[] strs = input.split(",");
  39. TreeNode root = new TreeNode(Integer.valueOf(strs[0]));
  40. Queue q = new LinkedList();
  41. q.offer(root);
  42. for(int i = 1; i < strs.length; i++){
  43. TreeNode curr = q.poll();
  44. if (curr == null) continue;
  45. if (!strs[i].equals("#")) {
  46. curr.left = new TreeNode(Integer.valueOf(strs[i]));
  47. q.offer(curr.left);
  48. }
  49. i++;
  50. if (i < strs.length && !strs[i].equals("#")) {
  51. curr.right = new TreeNode(Integer.valueOf(strs[i]));
  52. q.offer(curr.right);
  53. }
  54. }
  55. return root;
  56. }
  57. //Solution II: using 2 preorder traversal
  58. private static final String DELIMITER = ",";
  59. private static final String NN = "#";
  60. // Encodes a tree to a single string.
  61. public static String serialize2(TreeNode root) {
  62. //using preorder traversal
  63. StringBuilder res = new StringBuilder();
  64. serializeHelper(root, res);
  65. res.deleteCharAt(res.length() - 1);
  66. return res.toString();
  67. }
  68. private static void serializeHelper(TreeNode root, StringBuilder res) {
  69. if (root == null) {
  70. res.append(NN).append(DELIMITER);
  71. return;
  72. }
  73. res.append(root.val).append(DELIMITER);
  74. serializeHelper(root.left, res);
  75. serializeHelper(root.right, res);
  76. }
  77. // Decodes your encoded data to tree.
  78. public static TreeNode deserialize2(String data) {
  79. Deque deque = new LinkedList<>();
  80. deque.addAll(Arrays.asList(data.split(DELIMITER)));
  81. return deserializeHelper(deque);
  82. }
  83. private static TreeNode deserializeHelper(Deque deque) {
  84. String now = deque.pollFirst();
  85. if (now.equals(NN)) {
  86. return null;
  87. }
  88. TreeNode node = new TreeNode(Integer.parseInt(now));
  89. node.left = deserializeHelper(deque);
  90. node.right = deserializeHelper(deque);
  91. return node;
  92. }
  93. public static void main(String[] args) {
  94. //solution 1 level order
  95. TreeNode root1 = deSerialize("1,2,3,4,#,5,6,7");
  96. String result1 = serialize(root1);
  97. System.out.println(result1);
  98. //solution 2 preorder - 变种,可以要求输出一个LinkedList,而不是String
  99. TreeNode root2 = deserialize2("3,4,1,#,#,2,#,#,5,#,6,#,#");
  100. String result2 = serialize2(root2);
  101. System.out.println(result2);
  102. }

文章版权归作者所有,未经允许请勿转载,若此文章存在违规行为,您可以联系管理员删除。

转载请注明本文地址:https://www.ucloud.cn/yun/71807.html

相关文章

  • [LeetCode] 297. Serialize and Deserialize Binary T

    Problem Serialization is the process of converting a data structure or object into a sequence of bits so that it can be stored in a file or memory buffer, or transmitted across a network connection li...

    MRZYD 评论0 收藏0
  • leetcode297. Serialize and Deserialize Binary Tree

    摘要:因此题目中的例子的中序遍历结果为。但是,标准的中序遍历并不能使我们将该结果反构造成一棵树,我们丢失了父节点和子节点之间的关系。这里我们也可以明显的看出来,中序遍历需要保存的空值远远多于广度优先遍历。 题目要求 Serialization is the process of converting a data structure or object into a sequence of ...

    desdik 评论0 收藏0
  • 297. Serialize and Deserialize Binary Tree

    摘要:题目解答用一个特殊的符号来表示的情况这是按先序遍历来存到中去这里用为其包含了几乎所有这里还是挺多知识点的,后是一个可以把数组变成则是把加到这个的中去 题目:Serialization is the process of converting a data structure or object into a sequence of bits so that it can be stor...

    focusj 评论0 收藏0
  • Serialize and Deserialize Binary Tree & BST

    摘要:思路理论上说所有遍历的方法都可以。但是为了使和的过程都尽量最简单,是不错的选择。用作为分隔符,来表示。复杂度代码思路这道题和之前不同,一般的树变成了,而且要求是。还是可以用,还是需要分隔符,但是就不需要保存了。 297. Serialize and Deserialize Binary Tree Serialization is the process of converting a...

    eccozhou 评论0 收藏0
  • leetcode449. Serialize and Deserialize BST

    摘要:题目要求将二叉搜索树序列化和反序列化,序列化是指将树用字符串的形式表示,反序列化是指将字符串形式的树还原成原来的样子。假如二叉搜索树的节点较多,该算法将会占用大量的额外空间。 题目要求 Serialization is the process of converting a data structure or object into a sequence of bits so that...

    Honwhy 评论0 收藏0

发表评论

0条评论

最新活动
阅读需要支付1元查看
<