Re: [LeetCode] 刷到面试 Grind169 C++

楼主: SuiseiLeda (星街雷达)   2023-03-15 16:23:56
226. Invert Binary Tree easy题
二差树历遍而已
难得我会
但我runtime跟memory超烂
是要改迭代比较好吗
class Solution {
public:
TreeNode* invertTree(TreeNode* root) {
if(root == NULL) return root;
invertTree(root->left);
invertTree(root->right);
swap(root->left, root->right);
return root;
}
};
作者: FuGuRo (ThisFuckingGuyRolling)   2023-03-15 16:29:00
好强喔我才刚在学资料型态==
楼主: SuiseiLeda (星街雷达)   2023-03-15 16:30:00
别学了 直接开刷 不会再回头看
作者: FuGuRo (ThisFuckingGuyRolling)   2023-03-15 16:31:00
好 跟着大师走

Links booklink

Contact Us: admin [ a t ] ucptt.com