剑指offer_第19题_顺时针打印矩阵_Python

题目描述

  • 输入一个矩阵
  • 按照从外向里以顺时针的顺序依次打印出每一个数字
  • 例如,如果输入如下4 X 4矩阵: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 则依次打印出数字1,2,3,4,8,12,16,15,14,13,9,5,6,7,11,10.

解题思路

思路1

class Solution:
    # matrix类型为二维列表,需要返回列表
    def printMatrix(self, matrix):
        # write code here
        result = []
        while matrix:
            result += matrix.pop(0)
            if matrix:
                matrix = self.reverse_matrix(matrix)
        return result

    def reverse_matrix(self,matrix):
        row = len(matrix)
        col = len(matrix[0])
        new_matrix = []
        for i in range(col):
            new_line = []
            for j in range(row):
                new_line.append(matrix[j][col-i-1])
            new_matrix.append(new_line)
        return new_matrix

你可能感兴趣的:(剑指offer,PYTHON实现剑指Offer)