LeetCode 1372 Longest ZigZag Path in a Binary Tree (DFS)

Given a binary tree root, a ZigZag path for a binary tree is defined as follow:

  • Choose any node in the binary tree and a direction (right or left).
  • If the current direction is right then move to the right child of the current node otherwise move to the left child.
  • Change the direction from right to left or right to left.
  • Repeat the second and third step until you can't move in the tree.

Zigzag length is defined as the number of nodes visited - 1. (A single node has a length of 0).

Return the longest ZigZag path contained in that tree.

 

Example 1:

Input: root = [1,null,1,1,1,null,null,1,1,null,1,null,null,null,1,null,1]
Output: 3
Explanation: Longest ZigZag path in blue nodes (right -> left -> right).

Example 2:

Input: root = [1,1,1,null,1,null,null,1,1,null,1]
Output: 4
Explanation: Longest ZigZag path in blue nodes (left -> right -> left -> right).

Example 3:

Input: root = [1]
Output: 0

 

Constraints:

  • Each tree has at most 50000 nodes..
  • Each node's value is between [1, 100].

题目链接:https://leetcode.com/problems/longest-zigzag-path-in-a-binary-tree/

题目分析:每个点都可以作为当前根,dfs即可

5ms,时间击败93%

/**
 * Definition for a binary tree node.
 * public class TreeNode {
 *     int val;
 *     TreeNode left;
 *     TreeNode right;
 *     TreeNode(int x) { val = x; }
 * }
 */
class Solution {
    
    public void helper(TreeNode cur, TreeNode fa, int step, int[] ans) {
        if (cur == null) {
            return;
        }
        if (ans[0] < step) {
            ans[0] = step;
        }
        if (cur == fa.left) {
            helper(cur.right, cur, step + 1, ans);
            helper(cur.left, cur, 1, ans);
        } else {
            helper(cur.left, cur, step + 1, ans);
            helper(cur.right, cur, 1, ans);
        }
    }
    
    public int longestZigZag(TreeNode root) {
        if (root == null) {
            return 0;
        }
        int[] ans = new int[1];
        helper(root.left, root, 1, ans);
        helper(root.right, root, 1, ans);
        return ans[0];
    }
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值