美文网首页
Given a binary tree struct

Given a binary tree struct

作者: 我是你的果果呀 | 来源:发表于2016-12-24 08:01 被阅读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 横向扫描。

    相关文章

      网友评论

          本文标题:Given a binary tree struct

          本文链接:https://www.haomeiwen.com/subject/zbslvttx.html