iT邦幫忙

0

LeetCode 104 Java解法

  • 分享至 

  • xImage

題目
Given a binary tree, find its maximum depth.
The maximum depth is the number of nodes along the longest path from the root node down to the farthest leaf node.

我在 Eclipse試著解這題,但是在我註解的那2行出錯,請問要怎麼改才會跑出結果?
(從此行以下開始)

import java.util.LinkedList;
import java.util.Queue;
// import javax.swing.tree.TreeNode;

public class _MaxDepth_BinaryTree {

public static void main(String[] args) {
	TreeNode root = null;
    int depth = 0;
    Queue<TreeNode> q = new LinkedList<TreeNode>();
    q.offer(root);
    while (!q.isEmpty()) {
        depth++;
        int qLen = q.size();
        for (int i = 0; i < qLen; i++) {
            TreeNode node = q.poll();
            if (node.left != null) q.offer(node.left);  //這行.left出錯
            if (node.right != null) q.offer(node.right);  //這行.right出錯
        }
    }
    return;
    System.out.println(depth);
}

}

dragonH iT邦超人 5 級 ‧ 2020-06-14 01:23:21 檢舉
是我見識少嗎 為啥解 leetcode 會用到 javax.swing
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

1 個回答

0
海綿寶寶
iT邦大神 1 級 ‧ 2020-06-14 09:55:27

先說答案:自己實作 Node class

因為 java.swing.TreeNode 裡沒有 left/right 的 method

java.swing.JTree 是拿來做以下這種 UI 用的

chenyang iT邦新手 5 級 ‧ 2020-06-15 02:34:14 檢舉

喔喔,感謝回答,可是要如何修改才是正確的呢?
因為照下面寫結果跑出另一個錯誤 java.lang.NullPointerException

class Node{
Node left, right;
int value;
Node(int value){
left=right=null;
this.value = value;
}
}

這個

我要發表回答

立即登入回答