码迷,mamicode.com
首页 > 其他好文 > 详细

剑指offer系列源码-二叉树的镜像

时间:2014-12-07 23:19:36      阅读:184      评论:0      收藏:0      [点我收藏+]

标签:style   io   ar   color   os   sp   on   ef   amp   

输入一个二叉树,输出其镜像。

解法:交换所有非叶子结点的左右结点。

#include<stdio.h>
#include<iostream>
using namespace std;
struct BinaryTreeNode{
    int value;
    BinaryTreeNode* left;
    BinaryTreeNode* right;
};
//树的镜像
void reseverBinaryTree(BinaryTreeNode* root){
    if(root==NULL||(root->left==NULL&&root->right==NULL){
        return;
    }
    BinaryTreeNode* temp = root->right;
    root->right = root->left;
    root->left = temp;
    if(root->left){
        reseverBinaryTree(root->left);
    }
    if(root->right){
        reseverBinaryTree(root->right);
    }
}
int main(){

    return 0;
}


剑指offer系列源码-二叉树的镜像

标签:style   io   ar   color   os   sp   on   ef   amp   

原文地址:http://blog.csdn.net/hackcoder/article/details/41792397

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