刷题Day2数组02

文章详细介绍了三道力扣(LeetCode)的编程题解,包括使用双指针优化有序数组的平方排序,寻找长度最小的子数组以满足特定条件,以及生成螺旋矩阵的算法实现。这些题目涉及到排序、循环条件判断和空间规划等编程技巧。
摘要由CSDN通过智能技术生成

力扣

977有序数组的平方
暴力写法:

class Solution {
public:
    vector<int> sortedSquares(vector<int>& nums) {
        for(int i =0;i<nums.size();i++)
        {
            nums[i] = nums[i]*nums[i];
        }
        sort(nums.begin(),nums.end());

        return nums;
    }
};

修改后:
双指针写法,谁大谁走

class Solution {
public:
    vector<int> sortedSquares(vector<int>& nums) {
        std::vector<int> res(nums.size(),0);
        int left =0;
        int right = nums.size()-1;
        int k = nums.size()-1;
        while(left <= right)
        {
            if(nums[left]*nums[left] <= nums[right]*nums[right])
            {
                res[k] = nums[right]*nums[right];
                right--;
                k--;
            }
            else if(nums[left]*nums[left]>nums[right]*nums[right])
            {
                res[k] = nums[left]*nums[left];
                left++;
                k--;
            }

        }
        return res;
    }
};

209.长度最小的子数组

自己没写对,看的答案
重点在循环中止条件与最小长度

class Solution {
public:
    int minSubArrayLen(int target, vector<int>& nums) {
       int res = INT32_MAX;
       int length =0;
       int slow =0;
       int sum =0;
       for(int fast =0;fast < nums.size();fast++)
       {
           sum +=nums[fast];
            length++;
           while(sum >=target)
           {
               
               res = res < length ? res : length;
               sum -=nums[slow];
               slow++;
                length--;
           }
       }
       return res == INT32_MAX ? 0 : res;
    }
};

59. 螺旋矩阵 II

不会
小声bb一句,实际项目中真的会遇到到这种问题吗

周末再好好看一下此题

class Solution {
public:
    vector<vector<int>> generateMatrix(int n) {
        vector<vector<int>> res(n,vector<int>(n,0));
        int startx = 0;
        int starty =0;
        int mid = n/2;
        int loop = n/2;
        int offset = 1;
        int count = 1;
        int i,j;
        while(loop--)
        {
            i = startx;
            j = starty;
            for(j = starty;j<n - offset;j++)
            {
                res[startx][j] = count++;
            }

            for(i =startx; i < n-offset;i++)
            {
                res[i][j] = count++;
            }

            for(;j>starty;j--)
            {
                res[i][j] = count++;
            }

            for(;i>startx;i--)
            {
                res[i][j] = count++;
            }

            startx++;
            starty++;
            offset+=1;
        }

        if(n%2 != 0)
        {
            res[mid][mid] = count++;
        }
        return res;
    }
    
};
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值