leetcode 103. 두 갈래 나무의 톱날 모양 차원이 두루 다니다

제목 설명:
두 갈래 나무를 정해서 노드 값을 되돌려주는 톱날 모양의 차원을 두루 훑어본다.(즉, 먼저 왼쪽에서 오른쪽으로, 다시 오른쪽에서 왼쪽으로 다음 층을 훑어보며, 이와 같이 층과 층 사이를 교체하여 진행한다.)
예를 들어 두 갈래 나무를 지정합니다[3,9,20,null,null,15,7] ,
    3
   / \
  9  20
    /  \
   15   7

다음과 같이 앤티앨리어싱 계층을 반복합니다.
[
  [3],
  [20,9],
  [15,7]
]

코드:
class Solution {
public:
    vector> zigzagLevelOrder(TreeNode* root) {
        vector>ans;
        if(root==NULL)return ans;
        queueq;
        q.push(root);
        int flag=1;
        while(!q.empty()){
            queueqt;
            vectorres;
            while(!q.empty()){
                TreeNode *t=q.front();q.pop();
                res.push_back(t->val);
                if(t->left)qt.push(t->left);
                if(t->right)qt.push(t->right);
            }
            if(flag<0)reverse(res.begin(),res.end());
            flag=-flag;// 
            ans.push_back(res);
            q=qt;
        }
        return ans;
    }
};

좋은 웹페이지 즐겨찾기