每日一题 --- 606. 根据二叉树创建字符串[力扣][Go]

简介: 每日一题 --- 606. 根据二叉树创建字符串[力扣][Go]

题目:

你需要采用前序遍历的方式,将一个二叉树转换成一个由括号和整数组成的字符串。

空节点则用一对空括号 “()” 表示。而且你需要省略所有不影响字符串与原始二叉树之间的一对一映射关系的空括号对。

解题代码:

递归

func tree2str(root *TreeNode) string {
  var ans strings.Builder
  var dfs func(*TreeNode)
  dfs = func(node *TreeNode) {
    if node == nil {
      return
    }
    ans.WriteString(strconv.Itoa(node.Val))
    if node.Right != nil {
      ans.WriteString("(")
      dfs(node.Left)
      ans.WriteString(")")
      ans.WriteString("(")
      dfs(node.Right)
      ans.WriteString(")")
    } else if node.Left != nil {
      ans.WriteString("(")
      dfs(node.Left)
      ans.WriteString(")")
    }
  }
  dfs(root)
  return ans.String()
}


相关文章
|
22天前
|
存储 Go 索引
go语言中遍历字符串
go语言中遍历字符串
35 5
|
14天前
|
Go
go语言for 遍历字符串
go语言for 遍历字符串
25 8
|
18天前
|
Go 索引
go语言遍历字符串
go语言遍历字符串
21 3
|
2月前
【LeetCode 31】104.二叉树的最大深度
【LeetCode 31】104.二叉树的最大深度
20 2
|
2月前
【LeetCode 29】226.反转二叉树
【LeetCode 29】226.反转二叉树
18 2
|
2月前
【LeetCode 28】102.二叉树的层序遍历
【LeetCode 28】102.二叉树的层序遍历
17 2
|
3月前
|
Go
Go字节数组与字符串相互转换
Go字节数组与字符串相互转换
39 3
|
2月前
【LeetCode 43】236.二叉树的最近公共祖先
【LeetCode 43】236.二叉树的最近公共祖先
21 0
|
2月前
【LeetCode 38】617.合并二叉树
【LeetCode 38】617.合并二叉树
15 0
|
2月前
【LeetCode 37】106.从中序与后序遍历构造二叉树
【LeetCode 37】106.从中序与后序遍历构造二叉树
19 0