[Sword Finger Offer]インタビューの質問29.マトリックスを時計回りに印刷します

タイトル

マトリックスを入力し、各番号を外側から内側へ時計回りに順番に印刷します。

例1:

输入:matrix = [[1,2,3],[4,5,6],[7,8,9]]
输出:[1,2,3,6,9,8,7,4,5]

例2:

输入:matrix = [[1,2,3,4],[5,6,7,8],[9,10,11,12]]
输出:[1,2,3,4,8,12,11,10,9,5,6,7]

制限:

  • 0 <= matrix.length <= 100
  • 0 <= matrix [i] .length <= 100

この質問は[LeetCode] 54と同じです。らせん行列

アイデア

順番に4方向から判断すると。

コード

時間の複雑さ:O(n * m)
スペースの複雑さ:O(1)

class Solution {
public:
    vector<int> spiralOrder(vector<vector<int>>& matrix) {
        vector<int> res;
        if (matrix.empty()) return res;
        int row = matrix.size(), col = matrix[0].size();
        int top = 0, bottom = row - 1, left = 0, right = col - 1;
        while (true) {
            for (int j = left; j <= right; ++j) res.push_back(matrix[top][j]);
            if (++top > bottom) break;
            for (int i = top; i <= bottom; ++i) res.push_back(matrix[i][right]);
            if (--right < left) break;
            for (int j = right; j >= left; --j) res.push_back(matrix[bottom][j]);
            if (--bottom < top) break;
            for (int i = bottom; i >= top; --i) res.push_back(matrix[i][left]);
            if (++left > right) break;
        }
        return res;
    }
};

おすすめ

転載: www.cnblogs.com/galaxy-hao/p/12709220.html