返回介绍

solution / 0600-0699 / 0606.Construct String from Binary Tree / README

发布于 2024-06-17 01:03:36 字数 6129 浏览 0 评论 0 收藏 0

606. 根据二叉树创建字符串

English Version

题目描述

给你二叉树的根节点 root ,请你采用前序遍历的方式,将二叉树转化为一个由括号和整数组成的字符串,返回构造出的字符串。

空节点使用一对空括号对 "()" 表示,转化后需要省略所有不影响字符串与原始二叉树之间的一对一映射关系的空括号对。

 

示例 1:

输入:root = [1,2,3,4]
输出:"1(2(4))(3)"
解释:初步转化后得到 "1(2(4)())(3()())" ,但省略所有不必要的空括号对后,字符串应该是"1(2(4))(3)" 。

示例 2:

输入:root = [1,2,3,null,4]
输出:"1(2()(4))(3)"
解释:和第一个示例类似,但是无法省略第一个空括号对,否则会破坏输入与输出一一映射的关系。

 

提示:

  • 树中节点的数目范围是 [1, 104]
  • -1000 <= Node.val <= 1000

解法

方法一

# Definition for a binary tree node.
# class TreeNode:
#   def __init__(self, val=0, left=None, right=None):
#     self.val = val
#     self.left = left
#     self.right = right
class Solution:
  def tree2str(self, root: Optional[TreeNode]) -> str:
    def dfs(root):
      if root is None:
        return ''
      if root.left is None and root.right is None:
        return str(root.val)
      if root.right is None:
        return f'{root.val}({dfs(root.left)})'
      return f'{root.val}({dfs(root.left)})({dfs(root.right)})'

    return dfs(root)
/**
 * Definition for a binary tree node.
 * public class TreeNode {
 *   int val;
 *   TreeNode left;
 *   TreeNode right;
 *   TreeNode() {}
 *   TreeNode(int val) { this.val = val; }
 *   TreeNode(int val, TreeNode left, TreeNode right) {
 *     this.val = val;
 *     this.left = left;
 *     this.right = right;
 *   }
 * }
 */
class Solution {
  public String tree2str(TreeNode root) {
    if (root == null) {
      return "";
    }
    if (root.left == null && root.right == null) {
      return root.val + "";
    }
    if (root.right == null) {
      return root.val + "(" + tree2str(root.left) + ")";
    }
    return root.val + "(" + tree2str(root.left) + ")(" + tree2str(root.right) + ")";
  }
}
/**
 * Definition for a binary tree node.
 * struct TreeNode {
 *   int val;
 *   TreeNode *left;
 *   TreeNode *right;
 *   TreeNode() : val(0), left(nullptr), right(nullptr) {}
 *   TreeNode(int x) : val(x), left(nullptr), right(nullptr) {}
 *   TreeNode(int x, TreeNode *left, TreeNode *right) : val(x), left(left), right(right) {}
 * };
 */
class Solution {
public:
  string tree2str(TreeNode* root) {
    if (!root) return "";
    if (!root->left && !root->right) return to_string(root->val);
    if (!root->right) return to_string(root->val) + "(" + tree2str(root->left) + ")";
    return to_string(root->val) + "(" + tree2str(root->left) + ")(" + tree2str(root->right) + ")";
  }
};
/**
 * Definition for a binary tree node.
 * type TreeNode struct {
 *   Val int
 *   Left *TreeNode
 *   Right *TreeNode
 * }
 */
func tree2str(root *TreeNode) string {
  if root == nil {
    return ""
  }
  if root.Left == nil && root.Right == nil {
    return strconv.Itoa(root.Val)
  }
  if root.Right == nil {
    return strconv.Itoa(root.Val) + "(" + tree2str(root.Left) + ")"
  }
  return strconv.Itoa(root.Val) + "(" + tree2str(root.Left) + ")(" + tree2str(root.Right) + ")"
}
/**
 * Definition for a binary tree node.
 * class TreeNode {
 *   val: number
 *   left: TreeNode | null
 *   right: TreeNode | null
 *   constructor(val?: number, left?: TreeNode | null, right?: TreeNode | null) {
 *     this.val = (val===undefined ? 0 : val)
 *     this.left = (left===undefined ? null : left)
 *     this.right = (right===undefined ? null : right)
 *   }
 * }
 */

function tree2str(root: TreeNode | null): string {
  if (root == null) {
    return '';
  }
  if (root.left == null && root.right == null) {
    return `${root.val}`;
  }
  return `${root.val}(${root.left ? tree2str(root.left) : ''})${
    root.right ? `(${tree2str(root.right)})` : ''
  }`;
}
// Definition for a binary tree node.
// #[derive(Debug, PartialEq, Eq)]
// pub struct TreeNode {
//   pub val: i32,
//   pub left: Option<Rc<RefCell<TreeNode>>>,
//   pub right: Option<Rc<RefCell<TreeNode>>>,
// }
//
// impl TreeNode {
//   #[inline]
//   pub fn new(val: i32) -> Self {
//   TreeNode {
//     val,
//     left: None,
//     right: None
//   }
//   }
// }
use std::cell::RefCell;
use std::rc::Rc;
impl Solution {
  fn dfs(root: &Option<Rc<RefCell<TreeNode>>>, res: &mut String) {
    if let Some(node) = root {
      let node = node.borrow();
      res.push_str(node.val.to_string().as_str());

      if node.left.is_none() && node.right.is_none() {
        return;
      }
      res.push('(');
      if node.left.is_some() {
        Self::dfs(&node.left, res);
      }
      res.push(')');
      if node.right.is_some() {
        res.push('(');
        Self::dfs(&node.right, res);
        res.push(')');
      }
    }
  }

  pub fn tree2str(root: Option<Rc<RefCell<TreeNode>>>) -> String {
    let mut res = String::new();
    Self::dfs(&root, &mut res);
    res
  }
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文