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

116.填充每个节点的下一个右侧节点指针(DFS)

时间:2019-12-27 09:20:49      阅读:57      评论:0      收藏:0      [点我收藏+]

标签:class   mic   solution   ini   style   lse   code   bsp   null   

2019-12-27

08:52:23

技术图片

解法1:DFS 递归解决

技术图片

 

 

 

/*
// 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:
    int flag = 1;
    Node* connect(Node* root) {
        if(!root) return NULL;
        if(flag){
            root->next = NULL;
            flag = 0;
        }
        if(!(root->left)){
            return root;
        }
        else root->left->next = root->right;
        if(root->next){
            root->right->next = root->next->left;
        }else{
            root->right->next = nullptr;
        }
        connect(root->left);
        connect(root->right);
        return root;
    }
};

116.填充每个节点的下一个右侧节点指针(DFS)

标签:class   mic   solution   ini   style   lse   code   bsp   null   

原文地址:https://www.cnblogs.com/JasonPeng1/p/12105476.html

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