Given a binary tree struct

2016-12-24  本文已影响0人  我是你的果果呀

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 toNULL.
Initially, all next pointers are set toNULL.
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).

root 纵向扫描, cur 横向扫描。

上一篇 下一篇

猜你喜欢

热点阅读