Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to check the balance of binary trees by LeetCode

2025-04-04 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)06/01 Report--

This article mainly shows you "LeetCode how to check the balance of binary trees". The content is simple and easy to understand, and the organization is clear. I hope it can help you solve your doubts. Let Xiaobian lead you to study and learn this article "LeetCode how to check the balance of binary trees".

1. Brief description of the problem

Implement a function to check whether the binary tree is balanced.

In this case, the balanced tree is defined as follows:

The height difference between two subtrees of any node does not exceed 1.

2, example

Example 1: Given binary tree [3,9,20,null,null,15,7] 3 / \ 9 20 / \ 15 7 returns true. Example 2: Given binary tree [1,2,2,3,3,null,null,4,4] 1 / \ 2 2 / \ 3 3 / \4 4 returns false.

3, the solution to the problem

solve recursively

4, the solution program

public class IsBalancedTest { public static void main(String[] args) { TreeNode t1 = new TreeNode(3); TreeNode t2 = new TreeNode(9); TreeNode t3 = new TreeNode(20); TreeNode t4 = new TreeNode(15); TreeNode t5 = new TreeNode(7); t1.left = t2; t1.right = t3; t3.left = t4; t3.right = t5; boolean balanced = isBalanced(t1); System.out.println("balanced = " + balanced);

}

public static boolean isBalanced(TreeNode root) { if (root == null) { return true; } int leftDepth = dfs(root.left); int rightDepth = dfs(root.right); int abs = Math.abs(leftDepth - rightDepth); if (abs

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report