码迷,mamicode.com
首页 > 其他好文 > 详细

【剑指offer】【模拟】29. 顺时针打印矩阵

时间:2020-04-19 14:48:20      阅读:58      评论:0      收藏:0      [点我收藏+]

标签:更改   ++   方向   遍历   题目   定义   cto   剑指offer   ble   

题目链接:https://leetcode-cn.com/problems/shun-shi-zhen-da-yin-ju-zhen-lcof/

模拟

顺时针定义四个方向:上右下左。
从左上角开始遍历,先往右走,走到不能走为止,然后更改到下个方向,再走到不能走为止,依次类推,遍历 n*m 个格子后停止。

class Solution {
public:
    vector<int> spiralOrder(vector<vector<int>>& matrix) {
 vector<int> res;
        if (matrix.empty()) return res;
        int n = matrix.size(), m = matrix[0].size();
        vector<vector<bool>> st(n, vector<bool>(m, false));
        int dx[4] = {-1, 0, 1, 0}, dy[4] = {0, 1, 0, -1};
        int x = 0, y = 0, d = 1;
        for (int k = 0; k < n * m; k ++ )
        {
            res.push_back(matrix[x][y]);
            st[x][y] = true;

            int a = x + dx[d], b = y + dy[d];
            if (a < 0 || a >= n || b < 0 || b >= m || st[a][b])
            {
                d = (d + 1) % 4;
                a = x + dx[d], b = y + dy[d];
            }
            x = a, y = b;
        }
        return res;
    }
};

【剑指offer】【模拟】29. 顺时针打印矩阵

标签:更改   ++   方向   遍历   题目   定义   cto   剑指offer   ble   

原文地址:https://www.cnblogs.com/Trevo/p/12731371.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!