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

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;
    }
};

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

时间: 2024-10-05 11:08:05

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

[LeetCode] 116. 填充每个节点的下一个右侧节点指针

题目链接 : https://leetcode-cn.com/problems/populating-next-right-pointers-in-each-node/ 题目描述: 给定一个完美二叉树,其所有叶子节点都在同一层,每个父节点都有两个子节点.二叉树定义如下: struct Node { int val; Node *left; Node *right; Node *next; } 填充它的每个 next 指针,让这个指针指向其下一个右侧节点.如果找不到下一个右侧节点,则将 next

[leetcode-117]填充每个节点的下一个右侧节点指针 II

(1 AC) 填充每个节点的下一个右侧节点指针 I是完美二叉树.这个是任意二叉树 给定一个二叉树 struct Node { int val; Node *left; Node *right; Node *next; } 填充它的每个 next 指针,让这个指针指向其下一个右侧节点.如果找不到下一个右侧节点,则将 next 指针设置为 NULL. 初始状态下,所有 next 指针都被设置为 NULL. 示例:For example, Given the following binary tree

LeetCode OJ:Populating Next Right Pointers in Each Node II(指出每一个节点的下一个右侧节点II)

Follow up for problem "Populating Next Right Pointers in Each Node". What if the given tree could be any binary tree? Would your previous solution still work? Note: You may only use constant extra space. For example,Given the following binary tr

LeetCode 第117题 填充每个节点的下一个右侧节点指针||

给定一个二叉树 struct Node { int val; Node *left; Node *right; Node *next; } 填充它的每个 next 指针,让这个指针指向其下一个右侧节点.如果找不到下一个右侧节点,则将 next 指针设置为 NULL. 初始状态下,所有 next 指针都被设置为 NULL. 示例: 1 class Solution117 { 2 3 public Node connect(Node root) { 4 if (root == null) { 5 r

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

time O(n) ,sapce O(n) /* // Definition for a Node. class Node { public: int val; Node* left; Node* right; Node* next; Node() {} Node(int _val, Node* _left, Node* _right, Node* _next) { val = _val; left = _left; right = _right; next = _next; } }; */ /

4.6 找出二叉树中指定节点的下一个节点(中序后继),假定每个节点有父指针。

5 / 2 6 / \ 1 4 7 / 3 class Node{ Node left; Node right; Node parent; int val; } /** 1.如果有右子树,则结果为右子树的最左节点. 2.如果没有右子树,则需要回到父节点,如果当前节点是父节点的左子树,则父节点就是结果,如果不是继续向上再找父节点. */ public TreeNode inorderSucc(TreeNode n){ if(n==null) return null; if(n.right!=nul

找到下一个“元素节点”通用函数

//下一个元素节点通用函数 function getNextElement(node){ if(node.nodeType == 1){ return node; } //元素下一个节点,继续执行本次函数,循环,一直到找到下一个元素节点为止,则退出本次循环 if(node.nextSibling){         return getNextElement(node.nextSibling); } return null; }

JS函数:返回下一个元素节点

1 //寻找先一个元素节点的函数,把一个元素的下一个节点(nextSibing)作为参数传给该函数,经过筛选返回元素节点 2 function nextElementSiblings(node){ 3 if(node.nodeType == 1){ 4 return node; 5 } 6 if(node.nextSibling){ 7 return nextElementSiblings(node.nextSibling); 8 } 9 return null; 10 }

二叉树查找后继节点(即中序遍历情况下的这个节点的下一个) Python实现

1.若节点类型没有parent属性,采用中序遍历方式获取后继节点 1 def getSuccessorNode(head, node): 2 if (not node) or (not head): 3 return None 4 stack = [] 5 flag = False 6 while head or len(stack) > 0: 7 if head: 8 stack.append(head) 9 head = head.left 10 else: 11 head = stack.