zoukankan      html  css  js  c++  java
  • Populating Next Right Pointers in Each Node I&&II ——II仍然需要认真看看

    Populating Next Right Pointers in Each Node I

    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
    

    乍一看很难,理清思路后很简单的。

    /**
     * Definition for binary tree with next pointer.
     * struct TreeLinkNode {
     *  int val;
     *  TreeLinkNode *left, *right, *next;
     *  TreeLinkNode(int x) : val(x), left(NULL), right(NULL), next(NULL) {}
     * };
     */
    class Solution {
    public:
        void connect(TreeLinkNode *root) {
            if(root==NULL||root->left==NULL)
                return;
            root->left->next=root->right;
            if(root->next!=NULL)
                root->right->next=root->next->left;
            connect(root->left);
            connect(root->right);
            return ;
        }
    };

     

    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 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
    /**
     * Definition for binary tree with next pointer.
     * struct TreeLinkNode {
     *  int val;
     *  TreeLinkNode *left, *right, *next;
     *  TreeLinkNode(int x) : val(x), left(NULL), right(NULL), next(NULL) {}
     * };
     */
    class Solution {
    public:
           void connect(TreeLinkNode *root) {
            if(NULL == root) return;
            TreeLinkNode* start;
            TreeLinkNode* curNode;
            TreeLinkNode* nextNode;
            while(root != NULL){
                start = findStartNodeNextLev(root);
                curNode = start;
                nextNode = findNextNodeNextLev(root, start);
                while(nextNode != NULL){
                    curNode -> next = nextNode;
                    curNode = nextNode;
                    nextNode = findNextNodeNextLev(root, curNode);
                }
                root = start;
            }
        }
    private:
        TreeLinkNode* findNextNodeNextLev(TreeLinkNode* &cur, TreeLinkNode* curNextLev){
            if(cur -> left == curNextLev && cur -> right != NULL){
                return cur -> right;
            }else{
                while(cur -> next != NULL){
                    cur = cur -> next;
                    if(cur -> left != NULL && cur -> left != curNextLev) return cur -> left;
                    if(cur -> right != NULL && cur -> right != curNextLev) return cur -> right;
                }
            }
            return NULL;
        }
        
        TreeLinkNode* findStartNodeNextLev(TreeLinkNode* node){
            if(NULL == node) return NULL;
            if(node -> left != NULL) return node -> left;
            return findNextNodeNextLev(node, node -> left);
        }
    };

      

  • 相关阅读:
    【BZOJ2655】—calc(拉格朗日插值+生成函数+dp)
    【BZOJ4559】【JLOI2016】—成绩比较(拉格朗日插值+dp)
    【BZOJ5339】【洛谷P4593】【TJOI2018】—教科书般的亵渎(拉格朗日插值)
    【LOJ2542】【PKUWC2018】—随机游走(Min-Max容斥+树形dp)
    【LOJ#121】—「离线可过」动态图连通性(线段树分治)
    【BZOJ4867】【洛谷P5210】【ZJOI2017】—线段树(括号序列+树链剖分)
    【洛谷P4191】【CTSC2010】—性能优化(混合基FFT)
    【BZOJ3112】【ZJOI2013】—防守战线(线性规划+对偶)
    python 面向对象介绍
    lsof 命令
  • 原文地址:https://www.cnblogs.com/qiaozhoulin/p/4746862.html
Copyright © 2011-2022 走看看