• Skip to primary navigation
  • Skip to content
  • Skip to primary sidebar
  • Skip to secondary sidebar

GoHired

Interview Questions asked in Google, Microsoft, Amazon

Join WeekEnd Online Batch from 4-April-2020 on How to Crack Coding Interview in Just 10 Weeks : Fees just 20,000 INR

  • Home
  • Best Java Books
  • Algorithm
  • Internship
  • Certificates
  • About Us
  • Contact Us
  • Privacy Policy
  • Array
  • Stack
  • Queue
  • LinkedList
  • DP
  • Strings
  • Tree
  • Mathametical
  • Puzzles
  • Graph

Mirror of Tree

February 10, 2015 by Dhaval Dave

Write a code to construct a Mirror of Binary Tree as below.

Solution 1 ) Create a New Tree and store nodes in the way we want (mirrored way)

Algo :

struct node{
    int value;
    struct node* left;
    struct node* right;
};
struct node *mirrorTree(struct node *root){
  struct node *temp;
  if(root==NULL)
    return(NULL);
  temp = (struct node *) malloc(sizeof(struct node));
  temp->value = root->value;
  temp->left  = mirrorTree(root->right);
  temp->right = mirrorTree(root->left);
  return(temp);
}
Solution 2 ) In place change ( Use Recursion )

 

void mirror(struct node* node) 
{
  if (node==NULL) 
    return;  
  else
  {
    struct node* temp;

    mirror(node->left);
    mirror(node->right);
 
    /* swap the pointers */
      temp        = node->left;
      node->left  = node->right;
      node->right = temp;
  }
}
See working Code at : http://ideone.com/uDrfeu
See Video : 

Similar Articles

Filed Under: Amazon Interview Question, Interview Questions, problem Tagged With: Binary Tree, tree

Reader Interactions

Primary Sidebar

Join WeekEnd Online/Offline Batch from 4-April-2020 on How to Crack Coding Interview in Just 10 Weeks : Fees just 20,000 INR

Join WeekEnd Online/Offline Batch from 4-April-2020

WhatsApp us

Secondary Sidebar

Custom Search

  • How I cracked AMAZON
  • LeetCode
  • Adobe
  • Amazon
  • Facebook
  • Microsoft
  • Hacker Earth
  • CSE Interview

Top Rated Questions

Linked List V/S Binary Search Tree

Python String and numbers

LeetCode : Word Search

VMWare SDEII Interview

Binary Tree in Java

Right view of Binary tree

Leetcode: Edit Distance

Binary Tree in Java

Best Java Book | Top Java Programming Book for Beginners

building with N steps, we can take 1,2,3 steps calculate number of ways to reach at top of building

SAP Off Campus Hiring_ March 2015 Analytical Aptitude

Get Minimum element in O(1) from input numbers or Stack

Find shortest distances between every pair of vertices ( Dynamic Programming Floyd Warshall Algorithm)

Coin Collection Dynamic Programming

Word Break Problem

Memory Efficient LinkedList

Reverse a Linked List in groups of given size

Minimum insertions to form a palindrome

Check Binary Tree is Binary Search Tree or not

Find if a binary tree is height balanced ?

Handle duplicates in Binary Search Tree

Find min element in Sorted Rotated Array (Without Duplicates)

Binary Tree Isomorphic to each other

C++ OOPs Part1

Code Chef PRGIFT Solution

Maximum occurred Smallest integer in n ranges

Printing Longest Common Subsequence

Printing intermediate Integers between one element & next element of array

FizzBuzz Solution C C++

Wrong Directions given find minimum moves so that he can reach to the destination

Copyright © 2025 · Genesis Framework · WordPress · Log in