//给定一个二叉树的根节点 root ,返回它的 中序 遍历。 
//
// 
//
// 示例 1: 
//
// 
//输入:root = [1,null,2,3]
//输出:[1,3,2]
// 
//
// 示例 2: 
//
// 
//输入:root = []
//输出:[]
// 
//
// 示例 3: 
//
// 
//输入:root = [1]
//输出:[1]
// 
//
// 示例 4: 
//
// 
//输入:root = [1,2]
//输出:[2,1]
// 
//
// 示例 5: 
//
// 
//输入:root = [1,null,2]
//输出:[1,2]
// 
//
// 
//
// 提示: 
//
// 
// 树中节点数目在范围 [0, 100] 内 
// -100 <= Node.val <= 100 
// 
//
// 
//
// 进阶: 递归算法很简单,你可以通过迭代算法完成吗? 
// Related Topics 栈 树 哈希表 
// 👍 861 👎 0

/*
* 94 二叉树的中序遍历
* 2021-02-21 22:02:35
* @author oxygenbytes
*/ 
#include "leetcode.h" 
//leetcode submit region begin(Prohibit modification and deletion)
/**
 * Definition for a binary tree node.
 * struct TreeNode {
 *     int val;
 *     TreeNode *left;
 *     TreeNode *right;
 *     TreeNode() : val(0), left(nullptr), right(nullptr) {}
 *     TreeNode(int x) : val(x), left(nullptr), right(nullptr) {}
 *     TreeNode(int x, TreeNode *left, TreeNode *right) : val(x), left(left), right(right) {}
 * };
 */
class Solution2 {
public:
    vector<int> ans;
    vector<int> inorderTraversal(TreeNode* root) {
        dfs(root);
        return ans;
    }
    void dfs(TreeNode* root){
        if(!root) return ;
        dfs(root->left);
        ans.push_back(root->val);
        dfs(root->right);
    }
};

class Solution {
public:
    vector<int> ans;
    vector<int> inorderTraversal(TreeNode* root) {
        if(!root) return ans;

        stack<TreeNode*> stk;

        auto ptr = root;
        while(stk.size() || ptr){ // stk is not empty or ptr isn't nullptr
            if(ptr) stk.push(ptr), ptr = ptr->left ; // go to the left node
            else {
                ptr = stk.top();stk.pop();
                ans.push_back(ptr->val);
                ptr = ptr->right;
            }
        }
        return ans;
    }
};
//leetcode submit region end(Prohibit modification and deletion)