我的解決方案:比較笨拙,我直接按照左後根遍歷一遍,然後再按照右後根遍歷一遍,最後比較結果
class treenode
} public
class solution
string = ltreetostring(tree.left, string);
string = ltreetostring(tree.right, string);
string += integer.tostring(tree.val);
return
string;
}public
static string rtreetostring(treenode tree, string string)
string = rtreetostring(tree.right, string);
string = rtreetostring(tree.left, string);
string += integer.tostring(tree.val);
return
string;
}public
static boolean issymmetric(treenode root)
}
提交記錄中耗時最短的**:
/**
* definition for a binary tree node.
* public
class treenode
* }*/class solution
private boolean issym(treenode left, treenode right)
if(left.val != right.val) return false;
return issym(left.left, right.right) && issym(left.right, right.left);
}}
不得不說自己的思維還是不行啊。。。。 leetcode 二叉樹 對稱二叉樹
給定乙個二叉樹,檢查它是否是映象對稱的。例如,二叉樹 1,2,2,3,4,4,3 是對稱的。1 2 2 3 4 4 3 但是下面這個 1,2,2,null,3,null,3 則不是映象對稱的 1 2 2 3 3 方法一 遞迴 思路 如果乙個樹的左子樹與右子樹映象對稱,則該樹是對稱的 兩個樹互為映象的...
LeetCode 對稱二叉樹
給定乙個二叉樹,檢查它是否是映象對稱的。例如,二叉樹 1,2,2,3,4,4,3 是對稱的。1 2 2 3 4 4 3但是下面這個 1,2,2,null,3,null,3 則不是映象對稱的 1 2 2 3 3class solution public boolean issymmetricdoubl...
LeetCode 對稱二叉樹
給定乙個二叉樹,檢查它是否是映象對稱的。例如,二叉樹 1,2,2,3,4,4,3 是對稱的。1 2 2 3 4 4 3但是下面這個 1,2,2,null,3,null,3 則不是映象對稱的 1 2 2 3 3說明 如果你可以運用遞迴和迭代兩種方法解決這個問題,會很加分。思路 要比較二叉樹是否鏡面對稱...