LeetCode - Easy - 606. Construct String from Binary Tree

Topic

  • String
  • Tree

Description

https://leetcode.com/problems/construct-string-from-binary-tree/

Given the root of a binary tree, construct a string consists of parenthesis and integers from a binary tree with the preorder traversing way, and return it.

Omit all the empty parenthesis pairs that do not affect the one-to-one mapping relationship between the string and the original binary tree.

Example 1:

Input: root = [1,2,3,4]
Output: "1(2(4))(3)"
Explanation: Originallay it needs to be "1(2(4)())(3()())", but you need to omit all the unnecessary empty parenthesis pairs. And it will be "1(2(4))(3)"

Example 2:

Input: root = [1,2,3,null,4]
Output: "1(2()(4))(3)"
Explanation: Almost the same as the first example, except we cannot omit the first parenthesis pair to break the one-to-one mapping relationship between the input and the output.

Constraints:

  • The number of nodes in the tree is in the range [ 1 , 1 0 4 ] [1, 10^4] [1,104].
  • -1000 <= Node.val <= 1000

Analysis

方法一:我写的,递归法

方法二,别人写的,递归法

Submission

import com.lun.util.BinaryTree.TreeNode;

public class ConstructStringFromBinaryTree {

	//方法一:我写的,递归法
	public String tree2str(TreeNode root) {
		return dfs(root).toString();
	}

	private StringBuilder dfs(TreeNode node) {
		StringBuilder sb = new StringBuilder();
		if (node == null)
			return sb;

		sb.append(node.val);

		if (node.left != null && node.right == null) {
			sb.append("(");
			sb.append(dfs(node.left));
			sb.append(")");
		} else if (node.right != null) {
			sb.append("(");
			sb.append(dfs(node.left));
			sb.append(")(");
			sb.append(dfs(node.right));
			sb.append(")");
		}
		return sb;
	}

	//方法二,别人写的,递归法
	public String tree2str2(TreeNode t) {
		StringBuilder sb = new StringBuilder();
		preorder(t, sb);
		return sb.toString();
	}

	private void preorder(TreeNode root, StringBuilder sb) {
		if (root == null) {
			return;
		}
		sb.append(root.val);
		if (root.left != null) {
			sb.append("(");
			preorder(root.left, sb);
			sb.append(")");
		}
		if (root.right != null) {
			if (root.left == null) {
				sb.append("()");
			}
			sb.append("(");
			preorder(root.right, sb);
			sb.append(")");
		}
	}
}

Test

import static org.junit.Assert.*;
import org.junit.Test;

import com.lun.util.BinaryTree;

public class ConstructStringFromBinaryTreeTest {

	@Test
	public void test() {
		ConstructStringFromBinaryTree obj = new ConstructStringFromBinaryTree();

		assertEquals("1(2(4))(3)", obj.tree2str(BinaryTree.integers2BinaryTree(1,2,3,4)));
		assertEquals("1(2()(4))(3)", obj.tree2str(BinaryTree.integers2BinaryTree(1,2,3,null,4)));
	}
	
	@Test
	public void test2() {
		ConstructStringFromBinaryTree obj = new ConstructStringFromBinaryTree();
		
		assertEquals("1(2(4))(3)", obj.tree2str2(BinaryTree.integers2BinaryTree(1,2,3,4)));
		assertEquals("1(2()(4))(3)", obj.tree2str2(BinaryTree.integers2BinaryTree(1,2,3,null,4)));
	}
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值