码迷,mamicode.com
首页 > 编程语言 > 详细

LeetCode226 InvertBinaryTree Java题解

时间:2017-05-04 14:38:24      阅读:150      评论:0      收藏:0      [点我收藏+]

标签:class   stat   题解   tree   padding   otto   rgb   nod   art   

题目:

Invert a binary tree.

     4
   /     2     7
 / \   / 1   3 6   9
to
     4
   /     7     2
 / \   / 9   6 3   1
解答:

遍历每个节点  直接交换他们的左右节点

代码:

public static  TreeNode invertTree(TreeNode root) {

		 
		 if(root!=null)
		 {
			 TreeNode temNode=root.left;
			 root.left=root.right;
			 root.right=temNode;
			 invertTree(root.left);
			 invertTree(root.right);
		 }
		 
		return root;
		
	        
	    }


LeetCode226 InvertBinaryTree Java题解

标签:class   stat   题解   tree   padding   otto   rgb   nod   art   

原文地址:http://www.cnblogs.com/jhcelue/p/6806520.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!