题解 | #二叉树的下一个结点#

二叉树的下一个结点

https://www.nowcoder.com/practice/9023a0c988684a53960365b889ceaf5e

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


class Solution {
public:



TreeLinkNode* zxbianli(TreeLinkNode* pNode,TreeLinkNode* node)
{
    static TreeLinkNode* tree = nullptr;
    static int k=0;
    if (pNode)
    {
        if (pNode->left)
            zxbianli(pNode->left,node);
                        if(k)
            {
                tree=pNode;
                k=0;
            }
            cout<<'!'<<pNode->val;
        if (pNode==node)
            k=1;

        if (pNode->right)
            zxbianli(pNode->right,node);


    }
    return tree;



}






    TreeLinkNode* GetNext(TreeLinkNode* pNode) {
       

       static TreeLinkNode* head = nullptr;
       static TreeLinkNode *node=pNode;

        while(!head)
        {
            if(pNode->next)
            pNode=pNode->next;
            else head=pNode;
        }
        
        cout<<head->val<<'-'<<node->val;
        head=zxbianli(head,node);



        return head;

    }
};

一开始想复杂了,其实这道题只需要先找到根节点,然后在中序遍历就行了.

我一开始想的是怎么不找到根节点然后找下一个,但实际上找根节点很简单,复杂度低,是一个好方法.

全部评论

相关推荐

北斗导航Compass低仿版:没必要写这么多东西,还是尽量浓缩成一页,自我评价,git和cursor Trae这些都可以去掉。实习经历的描述最好根据star法则改一下,别这么直白
点赞 评论 收藏
分享
不愿吃饼的变色龙很感性:89k,那你得年薪1000w多
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客企业服务