• 19 螺旋矩阵



    给你一个 mn 列的矩阵 matrix ,请按照 顺时针螺旋顺序 ,返回矩阵中的所有元素。

    在这里插入图片描述
    提示:

     - m == matrix.length 
     - n == matrix[i].length 
     - 1 <= m, n <= 10
     - -100 <= matrix[i][j] <= 100
    
    • 1
    • 2
    • 3
    • 4

    题解1 循环(4个标志——根据顺时针)

    class Solution {
    public:
        vector<int> spiralOrder(vector<vector<int>>& matrix) {
            const int row = matrix.size();
            const int column = matrix[0].size();
            vector<int> res;
            int i(0), j (0), startR(0), endR(column-1), startC(0), endC(row-1);
            while(startC <= endC){
                
                i = startC;
                j = startR;
                
                if(j <= endR){
                    while(j <= endR)
                    // i = startC
                    res.push_back(matrix[i][j++]);
                    startC ++;
                    i ++;
                }else break;
                
                if(i <= endC){
                    j = endR;
                    while(i <= endC)
                        // j = endR
                        res.push_back(matrix[i++][j]);
                    endR --;
                    j --;
                }else break;
                
                if(j >= startR){
                    i = endC;
                    while(j >= startR)
                        // i = endC
                        res.push_back(matrix[i][j--]);
                    endC --;
                    i --;
                }else break;
                
                if(i >= startC){
                    j = startR;
                    while(i >= startC)
                    // j = startR
                        res.push_back(matrix[i--][j]);
                    startR ++;
                }else break;
            }
    
            return res;
        }
    };
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50

    在这里插入图片描述

    题解2 方向

    class Solution {
    private:
    // 向右、向下、向左、向上
        static constexpr int directions[4][2] = {{0, 1}, {1, 0}, {0, -1}, {-1, 0}};
    public:
        vector<int> spiralOrder(vector<vector<int>>& matrix) {
            if (matrix.size() == 0 || matrix[0].size() == 0) {
                return {};
            }
            
            int rows = matrix.size(), columns = matrix[0].size();
            vector<vector<bool>> visited(rows, vector<bool>(columns));
            int total = rows * columns;
            vector<int> order(total);
    
            int row = 0, column = 0;
            int directionIndex = 0;
            // 终止条件是 元素数目
            for (int i = 0; i < total; i++) {
                order[i] = matrix[row][column];
                visited[row][column] = true;
                int nextRow = row + directions[directionIndex][0], nextColumn = column + directions[directionIndex][1];
                if (nextRow < 0 || nextRow >= rows || nextColumn < 0 || nextColumn >= columns || visited[nextRow][nextColumn]) {
                    directionIndex = (directionIndex + 1) % 4;
                }
                row += directions[directionIndex][0];
                column += directions[directionIndex][1];
            }
            return order;
        }
    };
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31

    在这里插入图片描述

  • 相关阅读:
    使用angr自动利用简单缓冲区溢出漏洞-insomnihack_aeg
    【DevPress】V2.2.1版本发布,增加专栏内容管理
    Java Web(十二)--JSP
    微信公众平台快速开发框架源码
    神经网络与深度学习笔记(1)——实践基础
    「JVS低代码开发平台」关于逻辑引擎的触发讲解
    多维时序 | MATLAB实现TCN时间卷积神经网络多变量时间序列预测
    QT DAY4
    Android 系统启动 <System server> 服务 [3]
    华为OD机考算法题:矩阵最大值
  • 原文地址:https://blog.csdn.net/qq_43402798/article/details/132790972