226. 翻转二叉树 - 力扣(Leetcode)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
func invertTree(root *TreeNode) *TreeNode { if root == nil { return nil } root.Right,root.Left = root.Left,root.Right invertTree(root.Right) invertTree(root.Left) return root }
|