最近在做leetcode上的题目,有一道题是要求交换二叉树左右子树。我一开始没有在函数体中加入如下代码:
if(root == null)
return null;
结果发现出现空指针异常。我觉得上面这段代码有点多余,但是OJ缺了它通过不了。麻烦各位大神帮忙解决一下小弟的困惑。下面贴上整个程序的代码:
public class TreeNode {
int val;
TreeNode left;
TreeNode right;
TreeNode(int x) { val = x; }
public TreeNode invertTree(TreeNode root){
if(root == null)
return null;
if(root.left == null && root.right == null)
return root;
TreeNode temp = root.left;
root.left = root.right;
root.right = temp;
if(root.left != null)
invertTree(root.left);
if(root.right != null)
invertTree(root.right);
return root;
}
}
他的用例會不會有直接傳入null的?
invertTree(null);
你加入程式碼,第一句程式碼是
if(root.left == null && root.right == null)
如果傳遞參數是null.那麼root.left. 因為root是null ,調用left屬性是報了異常
如果你屏蔽了異常那麼.root.left==null 是true.
我並沒有了解他的程式碼,但是我猜程式碼應該是這樣的.
不用這麼麻煩。
這樣思路會不會簡潔清晰一點?