题解 | 二叉树的中序遍历

二叉树的中序遍历

https://www.nowcoder.com/practice/0bf071c135e64ee2a027783b80bf781d

/**
 * struct TreeNode {
 *	int val;
 *	struct TreeNode *left;
 *	struct TreeNode *right;
 *	TreeNode(int x) : val(x), left(nullptr), right(nullptr) {}
 * };
 */
class Solution {
public:
    /**
     * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
     *
     * 
     * @param root TreeNode类 
     * @return int整型vector
     */
    /*void ioTraversal(TreeNode* root,vector<int> &res)
    {
        if(root!=nullptr)
        {
            ioTraversal(root->left,res);
            res.push_back(root->val);
            ioTraversal(root->right,res);

        }
        else {
           return;
        }
    }*/
    /*vector<int> inorderTraversal(TreeNode* root) {
        // write code here
       vector<int> res;
       stack<TreeNode*> s;
       if(root==nullptr)
       {
            return res;
       }
       TreeNode* cur = root;
       while(cur!=nullptr||!s.empty())
       {
        while(cur!=nullptr)
        {
            s.push(cur);
            cur=cur->left;
        }
        cur=s.top();
        s.pop();
        res.push_back(cur->val);
        cur=cur->right;
       }
       return res;
      */
      vector<int> inorderTraversal(TreeNode* root) {
        // write code here
       vector<int> res;
       if(root==nullptr)
       {
            return res;
       }
       TreeNode* cur = root;
       while(cur!=nullptr)
       {
        if(cur->left==nullptr)
        {
           res.push_back(cur->val);
           cur=cur->right;
        }
        else {
            TreeNode* temp=cur->left;
            while(temp->right!=nullptr&&temp->right!=cur)
            {
                temp=temp->right;
            }
            if(temp->right==nullptr)
            {
                temp->right=cur;
                cur=cur->left;
            }
            else
            {
                res.push_back(cur->val);
                temp->right=nullptr;
                cur=cur->right;
            }
        }
       }
          return res;
    
    }
};

全部评论

相关推荐

程序员牛肉:你这简历有啥值得拷打的?在牛客你这种简历一抓一大把,也就是个人信息不一样而已。 关键要去找亮点,亮点啊,整个简历都跟流水线生产出来的一样。
点赞 评论 收藏
分享
Cons_W:我9本的,同样找不到。感觉是岗位太少的问题,可能12月份没多少岗位的。
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务