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

题目链接:有序数组的平方

视频讲解

思路:一开始用暴力算法解出来了,看了代码随想录的思路,用双指针解了,妙啊

时间复杂度:O(n)

空间复杂度:O(n)

class Solution(object):
    def sortedSquares(self, nums):
        """
        :type nums: List[int]
        :rtype: List[int]
        """
        
        left=0
        right=len(nums)-1
        i=len(nums)-1
        result=[0]*len(nums)
        while left<=right:
            if abs(nums[left])<=nums[right]:
                result[i]=nums[right]*nums[right]
                right-=1
            else:
                result[i]=nums[left]*nums[left]
                left+=1
            i-=1
        return result


        


题目链接:209长度最小的子数组

视频链接

思路:滑动窗口实现。本质还是利用双指针,当窗口内值大于等于目标值时,左指针加1,循环判断窗口内值是否大于等于目标值,直到左右指针窗口内的值和小于目标值,此时右指针加1

注意:最后返回值的确定 如果有满足条件的结果,返回 若无满足条件的,返回0

时间复杂度:O(n)

class Solution(object):
    def minSubArrayLen(self, target, nums):
        """
        :type target: int
        :type nums: List[int]
        :rtype: int
        """
        
        left=0
        right=0
        result=float("inf")
        curr_sum=0
        while right<len(nums):
            curr_sum+=nums[right]
            while curr_sum>=target:
                result=min(result,right-left+1)
                curr_sum-=nums[left]
                left+=1
            right+=1
        
        return result if result!=float('inf') else 0
       


题目链接:59.螺旋矩阵

视频链接

思路:因为这道题之前已经听过讲解,思路还记得。记得思路是一回事,实现又是另一回事。debug挺久的

时间复杂度:O(n)

class Solution(object):
    def generateMatrix(self, n):
        """
        :type n: int
        :rtype: List[List[int]]
        """
        stx=0
        sty=0
        offset=n-1
        loop=n//2
        mid=n//2
        result=[[0]*n for _ in range(n)]
        s=1
        for offset in range(1,loop+1):
            for j in range(sty,n-offset):
                result[stx][j]=s
                s+=1
                
            for i in range(stx,n-offset):
                result[i][n-offset]=s
                s+=1
                
            for j in range(n-offset,sty,-1):
                result[n-offset][j]=s
                s+=1

            for i in range(n-offset,stx,-1):
                result[i][sty]=s
                s+=1
            stx+=1
            sty+=1
        if n%2!=0:
            result[mid][mid]=s
        return result
        
            
            
            

        

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值