博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Leetcode Populating Next Right Pointers in Each Node II
阅读量:5153 次
发布时间:2019-06-13

本文共 1158 字,大约阅读时间需要 3 分钟。

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 tree,

1       /  \      2    3     / \    \    4   5    7

 

After calling your function, the tree should look like:

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

 题目看起来比较复杂,如果把它当做对二维数组建立链表,此时就容易想了

主要难点就是有上一层如何去控制下一层,你可以根据链表的思路,用一个dummy结点,每次指向新的一行,然后根据按照链表遍历思路,根据next结点去遍历,一边遍历一边添加下一层的结点。

class Solution {public:    void connect(TreeLinkNode *root) {        if(root == NULL) return;        root->next =NULL;        TreeLinkNode *start = root, *nextStart = new TreeLinkNode(0),*p = nextStart;        while(start){            if(start->left) {p->next = start->left;p = p->next;}            if(start->right){p->next = start->right;p = p->next;}            if(start->next ==NULL ){                p->next = NULL;                start = nextStart->next;                p = nextStart;            }else start = start->next;        }    }};

 

 

转载于:https://www.cnblogs.com/xiongqiangcs/p/3821128.html

你可能感兴趣的文章
awk变量
查看>>
mysql_对于DQL 的简单举例
查看>>
35. Search Insert Position(C++)
查看>>
[毕业生的商业软件开发之路]C#异常处理
查看>>
一些php文件函数
查看>>
有关快速幂取模
查看>>
Linux运维必备工具
查看>>
字符串的查找删除
查看>>
NOI2018垫底记
查看>>
快速切题 poj 1002 487-3279 按规则处理 模拟 难度:0
查看>>
Codeforces Round #277 (Div. 2)
查看>>
【更新】智能手机批量添加联系人
查看>>
NYOJ-128前缀式计算
查看>>
淡定,啊。数据唯一性
查看>>
深入理解 JavaScript 事件循环(一)— event loop
查看>>
Hive(7)-基本查询语句
查看>>
注意java的对象引用
查看>>
C++ 面向对象 类成员函数this指针
查看>>
NSPredicate的使用,超级强大
查看>>
自动分割mp3等音频视频文件的脚本
查看>>