LeetCode116. Populating Next Right Pointers in Each Node

编程入门 行业动态 更新时间:2024-10-24 13:28:22

LeetCode116. <a href=https://www.elefans.com/category/jswz/34/1605026.html style=Populating Next Right Pointers in Each Node"/>

LeetCode116. Populating Next Right Pointers in Each Node

文章目录

    • 一、题目
    • 二、题解

一、题目

You are given a perfect binary tree where all leaves are on the same level, and every parent has two children. The binary tree has the following definition:

struct Node {
int val;
Node *left;
Node *right;
Node *next;
}
Populate each next pointer to point to its next right node. If there is no next right node, the next pointer should be set to NULL.

Initially, all next pointers are set to NULL.

Example 1:

Input: root = [1,2,3,4,5,6,7]
Output: [1,#,2,3,#,4,5,6,7,#]
Explanation: Given the above perfect binary tree (Figure A), your function should populate each next pointer to point to its next right node, just like in Figure B. The serialized output is in level order as connected by the next pointers, with ‘#’ signifying the end of each level.
Example 2:

Input: root = []
Output: []

Constraints:

The number of nodes in the tree is in the range [0, 212 - 1].
-1000 <= Node.val <= 1000

Follow-up:

You may only use constant extra space.
The recursive approach is fine. You may assume implicit stack space does not count as extra space for this problem.

二、题解

/*
// 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) {queue<Node*> q;if(root != NULL) q.push(root);while(!q.empty()){int size = q.size();Node* pre = NULL;while(size--){Node* cur = q.front();q.pop();if(cur->left != NULL) q.push(cur->left);if(cur->right != NULL) q.push(cur->right);if(pre != NULL) pre->next = cur;pre = cur;if(size == 0) cur->next = NULL;}}return root;}
};

更多推荐

LeetCode116. Populating Next Right Pointers in Each Node

本文发布于:2023-11-15 19:32:47,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1605094.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:Populating   Node   Pointers

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!