3.18 二叉樹的鏡像

操作給定的二叉樹,將其變換爲源二叉樹的鏡像。 struct TreeNode { int val; struct TreeNode *left; struct TreeNode *right; TreeNode(int x) : val(x), left(NULL), right(NULL) { } }; class Solution { public: void Mirror(
相關文章
相關標籤/搜索