zoukankan      html  css  js  c++  java
  • Leetcode 二维数组周游 54

    给定一个包含 m x n 个元素的矩阵(m 行, n 列),请按照顺时针螺旋顺序,返回矩阵中的所有元素。

    示例 1:

    输入:
    [
    [ 1, 2, 3 ],
    [ 4, 5, 6 ],
    [ 7, 8, 9 ]
    ]
    输出: [1,2,3,6,9,8,7,4,5]
    示例 2:

    输入:
    [
    [1, 2, 3, 4],
    [5, 6, 7, 8],
    [9,10,11,12]
    ]
    输出: [1,2,3,4,8,12,11,10,9,5,6,7]

    class Solution:
        def spiralOrder(self, matrix: List[List[int]]) -> List[int]:
            if not matrix:return []
            res=[]
            h_start=0
            h_end=len(matrix)-1
            l_start=0
            l_end=len(matrix[0])-1
            while h_start<=h_end and l_start<=l_end:
                for i in range(l_start,l_end+1):
                    res.append(matrix[h_start][i])
                h_start+=1
                if h_start>h_end:break*
                for i in range(h_start,h_end+1):
                    res.append(matrix[i][l_end])
                l_end-=1
                if l_start>l_end:break*
                for i  in range(l_end,l_start-1,-1):
                    res.append(matrix[h_end][i])
                h_end-=1
                if h_start>h_end:break*
                for i in range(h_end,h_start-1,-1):
                    res.append(matrix[i][l_start])
                l_start+=1
                #print(l_start,l_end,h_start,h_end)
            return res
                
     
  • 相关阅读:
    逻辑回归与最大熵模型
    提升方法-AdaBoost
    Python中的类属性、实例属性与类方法、静态方法
    mysqldump详解
    12.python 模块使用,面向对象介绍
    11 python 内置函数
    10.函数的变量与返回值
    9. 函数的定义和参数,默认参数
    linux下iptables详解
    把linux下的yum源更换为阿里云的国内源
  • 原文地址:https://www.cnblogs.com/BetterThanEver_Victor/p/12858652.html
Copyright © 2011-2022 走看看