【代码随想录算法训练营第37期 第二天 | LeetCode977.有序数组的平方、209.长度最小的子数组、59.螺旋矩阵II】

代码随想录算法训练营第37期 第二天 | LeetCode977.有序数组的平方、209.长度最小的子数组、59.螺旋矩阵II


一、977.有序数组的平方

解题代码C++:

cpp 复制代码
class Solution {
public:
    vector<int> sortedSquares(vector<int>& nums) {
        int len = nums.size();

        for(int i = 0; i < len; i ++)
            nums[i] = nums[i] * nums[i];
        
        sort(nums.begin(), nums.end());

        return nums;
    }
};

题目链接/文章讲解/视频讲解:
https://programmercarl.com/0977.有序数组的平方.html



二、209.长度最小的子数组

解题代码C++:

cpp 复制代码
class Solution {
public:
    int minSubArrayLen(int target, vector<int>& nums) {
        int len = nums.size();

        int sum = 0, k = len + 5;
        for(int i = 0, j = 0; i < len; i ++)
        {
            sum += nums[i];

            while(sum >= target && j <= i)
            {
                sum -= nums[j];
                j ++;

                if(sum < target) k = min(k, i - j + 2);
            }
        }

        if(k == len + 5) return 0;
        else return k;
    }
};

题目链接/文章讲解/视频讲解:
https://programmercarl.com/0209.长度最小的子数组.html



三、59.螺旋矩阵II

解题代码C++:

cpp 复制代码
class Solution {
public:
    vector<vector<int>> generateMatrix(int n) {
        int dx[4] = {-1, 0, 1, 0}, dy[4] = {0, 1, 0, -1};
        vector<vector<int>> res(n, vector<int>(n));

        for(int k = 1, x = 0, y = 0, d = 0; k <= n * n; k ++)
        {
            res[x][y] = k;

            int a = x + dx[d], b = y + dy[d];

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

            x = a, y = b;
        }

        return res;
    }
};

题目链接/文章讲解/视频讲解:
https://programmercarl.com/0059.螺旋矩阵II.html

相关推荐
林木辛1 小时前
LeetCode热题 42.接雨水
算法·leetcode
黑菜钟3 小时前
代码随想录第七天|● 454.四数相加II ● 383. 赎金信 ● 15. 三数之和 18.四数之和
c++·算法·leetcode
pzx_0014 小时前
【LeetCode】14. 最长公共前缀
算法·leetcode·职场和发展
songx_995 小时前
leetcode10(跳跃游戏 II)
数据结构·算法·leetcode
1白天的黑夜18 小时前
哈希表-49.字母异位词分组-力扣(LeetCode)
c++·leetcode·哈希表
愚润求学10 小时前
【贪心算法】day7
c++·算法·leetcode·贪心算法
共享家95271 天前
优先搜索(DFS)实战
算法·leetcode·深度优先
flashlight_hi1 天前
LeetCode 分类刷题:2563. 统计公平数对的数目
python·算法·leetcode
楼田莉子1 天前
C++算法专题学习:栈相关的算法
开发语言·c++·算法·leetcode
dragoooon341 天前
[数据结构——lesson3.单链表]
数据结构·c++·leetcode·学习方法