category-wise-problems

contains category wise problems(data structures, competitive) of popular platforms.

View the Project on GitHub mayankdutta/category-wise-problems

Pre order traversal using Morris

/**
 * 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 Solution {
public:
    vector<int> preorderTraversal(TreeNode* root) {
        vector<int> ans;

        while (root != nullptr) {

          /*
           * if we can go, to left then proceed.
           */

            if (root->left) {
                TreeNode *pre = root->left;
                /*
                 * this is the judging part, where
                 * we only checking if we already been there, or not
                 * if already been there then will break the edge,
                 * else form a new edge.
                 * pushing values meanwhile,
                 * judging if we want to traverse(root, left, right) OR (left, root, right);
                 */


                // going to the very end
                while (pre->right != nullptr and pre->right != root) {
                    pre = pre->right;
                }

                /*
                 * if already edge then break the edge, and move to right part
                 * because if there is already edge, then we already been in our left part.
                 */

                if (pre->right == root) {
                    pre->right = nullptr;
                    root = root->right;
                }

                /*
                 * we will form the edge, and move root to left,
                 * because it is not explored.
                 * since we prioritzing left in pre order,
                 * as soon as we see switch position of root to root->left
                 * we will store all the left's meanwhile.
                 */

                else {
                    ans.push_back(root->val);
                    pre->right = root;
                    root = root->left;
                }
            }
            else {
                ans.push_back(root->val);
                root = root->right;
            }
        }
        return ans;
    }
};