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

本文记录了算法训练营第二天的学习内容,包括977题有序数组的平方的解题思路,重点在于如何避免使用绝对值函数并优化查找过程。此外,还提及了209题长度最小的子数组和59题螺旋矩阵II的解题要点。
摘要由CSDN通过智能技术生成

977. 有序数组的平方

直接贴一下代码:
记两个自己没想到的点:
1、可以不实现绝对值的函数,比两个数的平方。
2、一开始自己的想法是往结果数组里从0往后填数,先找到从左往右第一个大于0的数,和从右往左第一个小于0的数,这样比较麻烦。

/**
 * Note: The returned array must be malloced, assume caller calls free().
 */

// 这道题,我一开始没想到直接从两端开始往里比
// 想先找到中间第一个
int* sortedSquares(int* nums, int numsSize, int* returnSize){
    *returnSize = numsSize;
    int left = 0;
    int right = numsSize-1;
    int index = numsSize-1;

    int* ans = (int*)malloc(sizeof(int) * numsSize);
    // [left,right]
    while(left<=right){
        if(nums[right]*nums[right] >= nums[left]*nums[left]){
            ans[index] = nums[right]*nums[right];
            right--;
            index--;
        }
        else{
            ans[index] = nums[left]*nums[left];
            left++;
            index--;
        }
    }
    return ans;
}
class Solution:
    def sortedSquares(self, nums: List[int]) -> List[int]:
        n = len(nums)
        i,j,k = 0,n - 1,n - 1
        ans = [-1] * n
        while i <= j:
            lm = nums[i] ** 2
            rm = nums[j] ** 2
            if lm > rm:
                ans[k] = lm
                i += 1
            else:
                ans[k] = rm
                j -= 1
            k -= 1
        return ans
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值