Leetcode - Bitwise AND of Numbers Range
Leetcode - Binary Tree Right Side View

Leetcode - Boundary of Binary Tree

violet posted @ Apr 25, 2020 06:10:55 AM in 算法 with tags Algorithm Golang tree , 199 阅读

https://leetcode.com/problems/boundary-of-binary-tree/

Given a binary tree, return the values of its boundary in anti-clockwise direction starting from root. Boundary includes left boundary, leaves, and right boundary in order without duplicate nodes.  (The values of the nodes may still be duplicates.)

Left boundary is defined as the path from root to the left-most node. Right boundary is defined as the path from root to the right-most node. If the root doesn't have left subtree or right subtree, then the root itself is left boundary or right boundary. Note this definition only applies to the input binary tree, and not applies to any subtrees.

The left-most node is defined as a leaf node you could reach when you always firstly travel to the left subtree if exists. If not, travel to the right subtree. Repeat until you reach a leaf node.

The right-most node is also defined by the same way with left and right exchanged.

Example 1

Input:
  1
   \
    2
   / \
  3   4

Ouput:
[1, 3, 4, 2]

Explanation:
The root doesn't have left subtree, so the root itself is left boundary.
The leaves are node 3 and 4.
The right boundary are node 1,2,4. Note the anti-clockwise direction means you should output reversed right boundary.
So order them in anti-clockwise without duplicates and we have [1,3,4,2].

 

/**
 * Definition for a binary tree node.
 * type TreeNode struct {
 *     Val int
 *     Left *TreeNode
 *     Right *TreeNode
 * }
 */
func boundaryOfBinaryTree(root *TreeNode) []int {
    result := []int{}
    if root == nil {
        return result
    }
    if !isLeaf(root) {
        result = append(result, root.Val)
    }
    node := root.Left
    for node != nil {
        if !isLeaf(node) {
            result = append(result, node.Val)
        }
        if node.Left != nil {
            node = node.Left
        } else {
            node = node.Right
        }
    }
    
    addLeaves(root, &result)
    
    node = root.Right
    stack := []int{}
    for node != nil {
        if !isLeaf(node) {
            stack = append(stack, node.Val)
        }
        if node.Right != nil {
            node = node.Right
        } else {
            node = node.Left
        }
    }
    
    for i := len(stack)-1; i >= 0; i-- {
        result = append(result, stack[i])
    }
    
    return result
}


func isLeaf(node *TreeNode) bool {
    return node.Left == nil && node.Right == nil
}

func addLeaves(root *TreeNode, result *[]int) {
    if isLeaf(root) {
        *result = append(*result, root.Val)
    } else {
        if root.Left != nil {
            addLeaves(root.Left, result)
        }
        if root.Right != nil {
            addLeaves(root.Right, result)
        }
    }
    
}


登录 *


loading captcha image...
(输入验证码)
or Ctrl+Enter