首页 > 其他 > 详细

leetcode 116 填充每个节点的下一个右侧节点指针

时间:2021-03-30 22:05:33      阅读:25      评论:0      收藏:0      [点我收藏+]

技术分享图片

 

 

/*
// Definition for a Node.
class Node {
public:
    int val;
    Node* left;
    Node* right;
    Node* next;

    Node() : val(0), left(NULL), right(NULL), next(NULL) {}

    Node(int _val) : val(_val), left(NULL), right(NULL), next(NULL) {}

    Node(int _val, Node* _left, Node* _right, Node* _next)
        : val(_val), left(_left), right(_right), next(_next) {}
};
*/

class Solution {
public:
    Node* connect(Node* root) {
        if(!root)
        {
            return 0;
        }
        Node* Left=connect(root->left);
        Node* Right=connect(root->right);
    //子树之间的连线
        if(Left && Right)
        {
            while(Left && Right)
            {
                Left->next=Right;
                Left=Left->right;
                Right=Right->left;
            }
             while(Right)
            {
                Right->next=NULL;
                Right=Right->right;
            }
            root->next=NULL;
            return root;
        }
        else if(!Left && Right)
        {
            while(Right)
            {
                Right->next=NULL;
                Right=Right->right;
            }
            root->next=NULL;
            return root;
        }
        else if(!Right && Left)
        {
            while(Left)
            {
                Left->next=NULL;
                Left=Left->right;
            }
            root->next=NULL;
            return root;
        }
        else{
            root->next=NULL;
            return root;
        }
    }
};

 

leetcode 116 填充每个节点的下一个右侧节点指针

原文:https://www.cnblogs.com/libin123/p/14598884.html

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