19____顺时针打印矩阵

Posted xbfchder

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了19____顺时针打印矩阵相关的知识,希望对你有一定的参考价值。

题目描述:

输入一个矩阵,按照从外向里以顺时针的顺序依次打印出每一个数字,例如,如果输入如下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.

import java.util.ArrayList;
public class Solution 
    public ArrayList<Integer> printMatrix(int [][] matrix) 
        int rows=matrix.length;   //
        int cols=matrix[0].length;  //
        
        ArrayList<Integer> list=new ArrayList<>(); //要返回的结果
        
        if(rows==0 || cols==0)    //数据有效性检验
            return list;
        
        
        int left=0;
        int top=0;
        int right=cols-1;
        int bottom=rows-1;    //上下左右
        
        while(left<=right && top<=bottom)
            for(int i=left;i<=right;i++)   //第一行
                list.add(matrix[top][i]);
            
            
            for(int i=top+1;i<=bottom;i++)   //右边一列
                 list.add(matrix[i][right]);
            
            
            if(top!=bottom)      //最底一行
                for(int i=right-1;i>=left;i--)
                     list.add(matrix[bottom][i]);
                
            
            
             if(left!=right)      //最左一行
                for(int i=bottom-1;i>top;i--)
                     list.add(matrix[i][left]);
                
            
            top++;
            left++;
            bottom--;
            right--;
        
        return list;
    

思路:首先想着顺时针打印一圈的元素,然后采用循环遍历。

以上是关于19____顺时针打印矩阵的主要内容,如果未能解决你的问题,请参考以下文章

剑指offer——顺时针打印矩阵

算法:由外向内顺时针打印矩阵(n*n)元素

算法:由外向内顺时针打印矩阵(n*n)元素

剑指Offer19

剑指Offer_编程题_19

剑指Offer18 顺时针打印矩阵