好得很程序员自学网

<tfoot draggable='sEl'></tfoot>

java实现顺时针打印矩阵

本文实例为大家分享了java实现顺时针打印矩阵的具体代码,供大家参考,具体内容如下

题目:

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

5     6    7    8

9    10  11  12

13  14  15  16

方法一:

介绍一种矩阵处理方式:矩阵分圈处理。在矩阵中用左上角的坐标(tr,tc)和右下角的坐标(dr,dc)可以表示一个子矩阵,如题目中矩阵,当(tr,tc)=(0,0)、(dr,dc)=(3,3)时,表示的子矩阵就是整个矩阵,那么这个子矩阵的最外层的部分为:

1      2     3      4

5                    8

9                    12

13    14   15   16

把这个子矩阵的最外层顺时针打印出来,那么在(tr,tc)=(0,0)、(dr,dc)=(3,3)时,打印的结果为:1,2,3,4,8,12,16,15,14,13,9,5。接下来,分别使tr和tc加1,dr和dc减1,即(tr,tc)=(1,1)、(dr,dc)=(2,2)时,此时的子矩阵为:

 6     7    

10   11

再把这个矩阵顺时针打印出来,结果为6,7,11,10。再把tr和tc加1,dr和dc减1,即(tr,tc)=(2,2)、(dr,dc)=(1,1)。如果左上角坐标位于右下角坐标的右方或者下方(即tr>dr ||tc>dc),则停止,已经打印的所有结果即为要求的打印结果。

?

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

package array;

 

import java.util.arraylist;

import java.util.list;

 

public class spiralorder {

  /**

  * @param matrix: a matrix of m x n elements

  * @return: an integer list

  */

  //转圈打印矩阵

  //左上角点(tr,tc),右下角(dr,dc)

  public list<integer> spiralorder( int [][] matrix) {

  // write your code here

  list<integer> list= new arraylist<>();

  if (matrix== null ||matrix.length== 0 ) return list;

  int dr=matrix.length- 1 ;

  int dc=matrix[ 0 ].length- 1 ;

  int tr= 0 ;

  int tc= 0 ;

  while (tr<=dr && tc<=dc ){

   printmatrix(matrix,list,tr++,tc++,dr--,dc--);

  }

  return list;

  }

 

  private void printmatrix( int [][] matrix,list<integer> list, int tr, int tc, int dr, int dc){

  if (tr==dr){ // 子矩阵只有一行

   for ( int i=tc;i<=dc;i++)

   list.add(matrix[tr][i]);

  } else if (tc==dc){ // 子矩阵只有一列

   for ( int i=tr;i<=dr;i++)

   list.add(matrix[i][tc]);

  } else {

   int curc=tc;

   int curr=tr;

   while (curc!=dc){

   list.add(matrix[tr][curc]);

   curc++;

   }

   while (curr!=dr){

   list.add(matrix[curr][dc]);

   curr++;

   }

   while (curc!=tc){

   list.add(matrix[dr][curc]);

   curc--;

   }

   while (curr!=tr){

   list.add(matrix[curr][tc]);

   curr--;

   }

  }

  }

 

  public static void main(string[] args) {

  spiralorder spiralorder= new spiralorder();

  int [][] matrix={};

  system.out.println(spiralorder.spiralorder(matrix));

  }

}

方法二:

分析:如果以矩阵左上角为(0,0),则每一圈开始的点是(0,0)、(1,1)...,可以观察如果2*2矩阵,只打印1圈,3*3矩阵,打印2圈,3*2矩阵,打印1圈,所以有col>count*2 && row>count*2,count从0开始。

对于每一圈的打印,开始的行号和列号都为count,结束的行号endrow=row-1-count,结束的列号endcol=col-1-count。

第一步从左向右打印是必须的,循环打印,行号为count,列号为count到endrow递增。

第二步从上往下打印满足的条件是终止行号大于开始行号endrow>count,循环打印,行号为count+1到endrow递增,列号为endcol。

第三步从右往左打印满足的条件是第二步条件终止行号大于开始行号endrow>count并且终止列号大于开始列号endcol>count,循环打印,行号为endrow,列号为endcol-1到count递减。

第四步从下往上打印满足的条件是终止列号大于开始列号endcol>start且终止行号至少比开始行号大2即endrow-count>1,循环打印,行号为endrow-1到count+1递减,列号为count。

?

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

import java.util.arraylist;

public class solution {

  public arraylist<integer> result= new arraylist<>();

  public arraylist<integer> printmatrix( int [][] matrix) {

   int row=matrix.length;

   int col=matrix[ 0 ].length;

   if (matrix== null || row< 0 || col< 0 ){

    return null ;

   }

   int count= 0 ;

   while (col>count* 2 && row>count* 2 ){

    printcircle(matrix,col,row,count);

    count++;

   }

   return result;

  }

 

  public void printcircle( int [][] matrix, int col, int row, int start){

   int endrow=row-start- 1 ;

   int endcol=col-start- 1 ;

   //从左到右打印一行

   //第一行一定会打印的

   for ( int i=start;i<=endcol;i++){

    result.add(matrix[start][i]);

   }

   //从上往下打印(第二步)

   if (endrow>start){

    for ( int i=start+ 1 ;i<=endrow;i++){

     result.add(matrix[i][endcol]);

    }

   }

   //从右往左打印(第三步)

   if (endrow>start && endcol>start){

    for ( int i=endcol- 1 ;i>=start;i--){

     result.add(matrix[endrow][i]);

    }

   }

   //从下往上打印(第四步)

   if ((endrow-start> 1 )&&endcol>start){

    for ( int i=endrow- 1 ;i>=start+ 1 ;i--){

     result.add(matrix[i][start]);

    }

   }

  }

}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。

原文链接:https://blog.csdn.net/qq_27139155/article/details/79451770

查看更多关于java实现顺时针打印矩阵的详细内容...

  阅读:24次