力扣hot100——矩阵

73. 矩阵置零

cpp 复制代码
class Solution {
public:
    void setZeroes(vector<vector<int>>& a) {
        int n = a.size(), m = a[0].size();
        vector<int> r(n + 10, 0);
        vector<int> c(m + 10, 0);
        for (int i = 0; i < n; i++) {
            for (int j = 0; j < m; j++) {
                if (!a[i][j]) {
                    r[i] = 1;
                    c[j] = 1;
                }
            }
        }

        for (int i = 0; i < n; i++) {
            for (int j = 0; j < m; j++) {
                if (r[i] || c[j]) a[i][j] = 0;
            }
        }
    }
};

模拟

54. 螺旋矩阵

cpp 复制代码
class Solution {
public:
    vector<int> spiralOrder(vector<vector<int>>& a) {
        int n = a.size(), m = a[0].size();
        int x = 0, y = 0;
        int sum = m * n;

        int sx = n - 1, sy = m;
        int dx = 1, dy = 1;
        vector<int> ans;
        while (sum) {
            for (int i = 1; i <= sy; i++) {
                ans.push_back(a[x][y]);
                y += dy;
                sum--;
            }
            dy *= -1;
            sy--;
            x += dx;
            y += dy;
            for (int i = 1; i <= sx; i++) {
                ans.push_back(a[x][y]);
                x += dx;
                sum--;
            }
            dx *= -1;
            sx--;
            y += dy;
            x += dx;
        }
        return ans;
    }
};

套路题,模拟

48. 旋转图像

cpp 复制代码
class Solution {
public:
    void rotate(vector<vector<int>>& a) {
        int n = a.size(), m = a[0].size();
        vector<vector<int>> ans(n, vector<int>(m, 0));
        for (int i = 0; i < n; i++) {
            for (int j = 0; j < m; j++) {
                ans[j][n - i - 1] = a[i][j];
            }
        }
        swap(a, ans);
    }
};

套路题,模拟

240. 搜索二维矩阵 II

cpp 复制代码
class Solution {
public:
    bool searchMatrix(vector<vector<int>>& a, int target) {
        int n = a.size(), m = a[0].size();
        int x = 0, y = m - 1;
        while (x < n && y >= 0) {
            if (a[x][y] == target) return true;
            if (a[x][y] > target) y--;
            else x++;
        }
        return false;
    }
};

Z字形查找

相关推荐
Liknana4 分钟前
unique_ptr 智能指针
c++·算法
Sol-itude38 分钟前
【项目介绍】基于机器学习的低空小、微无人机识别技术
人工智能·算法·机器学习·matlab·无人机
友培1 小时前
工业大数据分析算法实战-day08
算法·数据挖掘·数据分析
阿正的梦工坊1 小时前
矩阵变换:Scaling、Dilation、Rotation 和 Reflection对应的中文是什么?(中英双语)
人工智能·机器学习·矩阵
诚丞成1 小时前
模拟篇——算法浮世绘,探寻模拟之境的计算艺术(2)
c++·算法
毒丐1 小时前
深入解析二叉树算法
数据结构·算法
LuckyRich11 小时前
【贪心算法】贪心算法六
算法·贪心算法
潜意识起点2 小时前
【潜意识Java】蓝桥杯算法有关的动态规划求解背包问题
算法·蓝桥杯·动态规划
爱吃西瓜的小菜鸡2 小时前
【C语言】贪心吃糖
c语言·开发语言·学习·算法
Zilliz Planet2 小时前
RAG开发中,如何用Milvus 2.5 BM25算法实现混合搜索
开发语言·python·算法·milvus