首页 > 其他 > 详细

Flatten Binary Tree to Linked List

时间:2015-12-07 11:56:07      阅读:213      评论:0      收藏:0      [点我收藏+]

Given a binary tree, flatten it to a linked list in-place.

For example,
Given

         1
        /        2   5
      / \        3   4   6

The flattened tree should look like:

   1
         2
             3
                 4
                     5
                         6
  • 很简单,先序遍历
/**
 * Definition for a binary tree node.
 * struct TreeNode {
 *     int val;
 *     struct TreeNode *left;
 *     struct TreeNode *right;
 * };
 */
void flatten(struct TreeNode* root) {
    struct TreeNode *tmp = NULL, *next = NULL;
    if(root == NULL)
        return NULL;
    if(root->left != NULL)
    {
        tmp = root->right;
        root->right = root->left;
        flatten(root->left);
        root->left = NULL;
        while(root->right != NULL)
            root = root->right;
        root->right = tmp;
        flatten(tmp);
    }
    else
        flatten(root->right);
}

Flatten Binary Tree to Linked List

原文:http://www.cnblogs.com/dylqt/p/5025396.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!