您好,登錄后才能下訂單哦!
翻轉(zhuǎn)一棵二叉樹。
示例:
輸入:
?????4 ???/???\ ??2?????7 ?/?\???/?\ 1???3?6???9
輸出:
?????4 ???/???\ ??7?????2 ?/?\???/?\ 9???6?3???1
#?Definition?for?a?binary?tree?node. #?class?TreeNode: #?????def?__init__(self,?x): #?????????self.val?=?x #?????????self.left?=?None #?????????self.right?=?None class?Solution: ????def?invertTree(self,?root:?TreeNode)?->?TreeNode: ????????if?root: ????????????root.left,?root.right?=?root.right,?root.left ????????????self.invertTree(root.left) ????????????self.invertTree(root.right) ????????return?root
執(zhí)行用時(shí) :?52 ms, 在Invert Binary Tree的Python3提交中擊敗了87.75% 的用戶
內(nèi)存消耗 :?13.1 MB, 在Invert Binary Tree的Python3提交中擊敗了65.41% 的用戶
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。