[LeetCode]116.Populating Next Right Pointers in Each Node

【题目】

Given a binary tree

    struct TreeLinkNode {
      TreeLinkNode *left;
      TreeLinkNode *right;
      TreeLinkNode *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.

Note:

  • You may only use constant extra space.
  • You may assume that it is a perfect binary tree (ie, all leaves are at the same level, and every parent has two children).

For example,
Given the following perfect binary tree,

         1
       /  \
      2    3
     / \  / \
    4  5  6  7

After calling your function, the tree should look like:

         1 -> NULL
       /  \
      2 -> 3 -> NULL
     / \  / \
    4->5->6->7 -> NULL

Show Tags

【分析】

在层次遍历过程中,修改next指针指向。

类似于:[LeetCode]Binary Tree Level Order Traversal

【代码】

/*********************************
*   日期:2014-12-24
*   作者:SJF0115
*   题目: 116.Populating Next Right Pointers in Each Node
*   来源:https://oj.leetcode.com/problems/populating-next-right-pointers-in-each-node/
*   结果:AC
*   来源:LeetCode
*   总结:
**********************************/
#include <iostream>
#include <queue>
using namespace std;

struct TreeLinkNode {
    int val;
    TreeLinkNode *left;
    TreeLinkNode *right;
    TreeLinkNode *next;
    TreeLinkNode(int x):val(x),left(NULL),right(NULL),next(NULL){}
};

class Solution {
public:
    void connect(TreeLinkNode *root) {
        if(root == NULL){
            return;
        }//if
        queue<TreeLinkNode*> cur;
        queue<TreeLinkNode*> next;
        cur.push(root);
        TreeLinkNode *p,*pre;
        while(!cur.empty()){
            pre = NULL;
            // 当前层遍历
            while(!cur.empty()){
                // 出队列
                p = cur.front();
                cur.pop();
                // 横向连接
                if(pre != NULL){
                    pre->next = p;
                }//if
                pre = p;
                // next保存下一层节点
                // 左子树不空加入队列
                if(p->left){
                    next.push(p->left);
                }//if
                // 右子树不空加入队列
                if(p->right){
                    next.push(p->right);
                }//if
            }//while
            p->next = NULL;
            swap(next,cur);
        }//while
    }
};

//按先序序列创建二叉树
int CreateBTree(TreeLinkNode*& T){
    int data;
    //按先序次序输入二叉树中结点的值,-1表示空树
    cin>>data;
    if(data == -1){
        T = NULL;
    }
    else{
        T = new TreeLinkNode(data);
        //构造左子树
        CreateBTree(T->left);
        //构造右子树
        CreateBTree(T->right);
    }
    return 0;
}
// 输出
void LevelOrder(TreeLinkNode *root){
    if(root == NULL){
        return;
    }//if
    TreeLinkNode *p = root,*q;
    while(p){
        q = p;
        // 横向输出
        while(q){
            cout<<q->val<<"->";
            q = q->next;
        }//while
        if(q == NULL){
            cout<<"NULL"<<endl;
        }//if
        p = p->left;
    }//while
}

int main() {
    Solution solution;
    TreeLinkNode* root(0);
    CreateBTree(root);
    solution.connect(root);
    LevelOrder(root);
}

【分析二】

对于一个左节点,相邻节点为父节点的右子节点。next指针指向父节点的右子节点。

对于一个当右节点稍微麻烦一些。相邻节点为父节点的右相邻节点的左子结点。父节点的右相邻节点还可能为空,所以需要判断一下。

// 父节点右相邻节点不为空
            if(next){
                connect(cur->right,next->left);
            }//if
            // 父节点右相邻节点为空
            else{
                connect(cur->right,NULL);
            }//else

next指针指向父节点的右相邻节点的左子结点或者空指针。

    

【代码二】

class Solution {
public:
    void connect(TreeLinkNode *root) {
        if(root == NULL){
            return;
        }//if
        connect(root,NULL);
    }//void
private:
    // cur 当前节点 next 右相邻节点
    void connect(TreeLinkNode *cur,TreeLinkNode *next) {
        if(cur == NULL){
            return;
        }//if
        else{
            cur->next = next;
        }//else
        // 左子树(连接的下一节点为父节点的右节点)
        if(cur->left){
            connect(cur->left,cur->right);
        }//if
        // 右子树(连接的下一节点为父节点相邻节点的左节点)
        if(cur->right){
            // 右相邻节点不为空
            if(next){
                connect(cur->right,next->left);
            }//if
            // 右相邻节点为空
            else{
                connect(cur->right,NULL);
            }//else
        }//if
    }//void
};

时间: 2024-09-05 23:22:57

[LeetCode]116.Populating Next Right Pointers in Each Node的相关文章

[LeetCode]117.Populating Next Right Pointers in Each Node 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 bin

Populating Next Right Pointers in Each Node 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

Populating Next Right Pointers in Each Node

Given a binary tree struct TreeLinkNode { TreeLinkNode *left; TreeLinkNode *right; TreeLinkNode *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,

leetcode难度及面试频率

转载自:LeetCode Question Difficulty Distribution               1 Two Sum 2 5 array sort         set Two Pointers 2 Add Two Numbers 3 4 linked list Two Pointers           Math 3 Longest Substring Without Repeating Characters 3 2 string Two Pointers      

LeetCode All in One 题目讲解汇总(持续更新中...)

终于将LeetCode的免费题刷完了,真是漫长的第一遍啊,估计很多题都忘的差不多了,这次开个题目汇总贴,并附上每道题目的解题连接,方便之后查阅吧~ 如果各位看官们,大神们发现了任何错误,或是代码无法通过OJ,或是有更好的解法,或是有任何疑问,意见和建议的话,请一定要在对应的帖子下面评论区留言告知博主啊,多谢多谢,祝大家刷得愉快,刷得精彩,刷出美好未来- 博主制作了一款iOS的应用"Leetcode Meet Me",里面有Leetcode上所有的题目,并且贴上了博主的解法,随时随地都能

LeetCode总结【转】

转自:http://blog.csdn.net/lanxu_yy/article/details/17848219 版权声明:本文为博主原创文章,未经博主允许不得转载. 最近完成了www.leetcode.com的online judge中151道算法题目.除各个题目有特殊巧妙的解法以外,大部分题目都是经典的算法或者数据结构,因此做了如下小结,具体的解题思路可以搜索我的博客:LeetCode题解 题目 算法 数据结构 注意事项 Clone Graph BFS 哈希表 Word Ladder II

ajax-求高受!$.each嵌套$.each出现这样的问题,并且js无效果

问题描述 求高受!$.each嵌套$.each出现这样的问题,并且js无效果 <%@ page language="java" contentType="text/html; charset=utf-8" pageEncoding="utf-8"%> <%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %> <

C Programming for Embedded System

Introduction Now for embedded system development people are using operating system to add more features and at the same time reduce the development time of a complex system. This article gives a simple & understandable overview of scheduling techniqu

[LeetCode]135.Candy

[题目] There are N children standing in a line. Each child is assigned a rating value. You are giving candies to these children subjected to the following requirements: Each child must have at least one candy. Children with a higher rating get more can