2. Two image of a fork tree

Source: Internet
Author: User

First, the topic

Complete a function, enter a binary tree, and the function outputs its image.

Second, algorithm and implementation 1. Algorithm

An image of a binary tree, his Zuozi is the right subtree of the original binary tree, and his right subtree is the left subtree of the original binary tree, and so is his sub-tree. So, in order to get the image of a two-fork tree, we can exchange the left and right subtree of the two-fork tree for its subtree. The algorithm uses recursion to achieve the most consistent requirements.

2. Robustness Considerations

For binary tree root, the null pointer is processed.

3. Implement
1 voidMirrorrecursively (binarytreenode*Pnode)2 {3     if(Pnode = =NULL)4         return;5 6     if(Pnode->m_pleft = = NULL && Pnode->m_pright = =NULL)7         return;8 9binarytreenode* tmp = pnode->M_pleft;TenPnode->m_pleft = pnode->M_pright; OnePnode->m_pright =tmp; A  -Mirrorrecursively (pnode->m_pleft); -Mirrorrecursively (pnode->m_pright); the}

2. Two image of a fork tree

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.