A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

意思就是定义一个二维数组,将这个数组遍历出来,然后出来的样子事首尾相连,感觉好难,目前我跟我同学都还没思路,哪位路过的大神能指点下,感激不尽!!

3 个回复

倒序浏览
是不是一圈一圈的打印
回复 使用道具 举报
  1. import java.util.Scanner;

  2. public class 回形取数 {

  3.         private static Scanner sc;

  4.         public static void main(String[] args) {

  5.                 sc = new Scanner(System.in);
  6.                 String[] str1 = sc.nextLine().split(" ");
  7.                 int x = Integer.parseInt(str1[0]);
  8.                 int y = Integer.parseInt(str1[1]);
  9.                
  10.                 String[][] arr = new String[x][y];
  11.                 for (int i = 0; i < x; i++) {
  12.                         String[] str = sc.nextLine().trim().split(" ");
  13.                         arr[i] =str;
  14.                        
  15.                 }
  16.                 spiralOrderPrint(arr);
  17.         }

  18.         public static void spiralOrderPrint(String[][] matrix) {
  19.                 int tR = 0;
  20.                 int tC = 0;
  21.                 int dR = matrix.length - 1;
  22.                 int dC = matrix[0].length - 1;

  23.                 while (tR <= dR && tC <= dC) {
  24.                         printEdge(matrix, tR++, tC++, dR--, dC--);
  25.                 }

  26.         }

  27.         public static void printEdge(String[][] m, int tR, int tC, int dR, int dC) {
  28.                 if (tR == dR) {
  29.                         for (int i = tC; i <= dC; i++) {
  30.                                 System.out.print(m[tR][i] + " ");
  31.                         }
  32.                 } else if (tC == dC) {
  33.                         for (int i = tR; i <= dR; i++) {
  34.                                 System.out.print(m[i][tC] + " ");
  35.                         }
  36.                 } else {
  37.                         int curC = tC;
  38.                         int curR = tR;
  39.                         while (curR != dR) {
  40.                                 System.out.print(m[curR][tC] + " ");
  41.                                 curR++;
  42.                         }
  43.                         while (curC != dC) {
  44.                                 System.out.print(m[dR][curC] + " ");
  45.                                 curC++;
  46.                         }
  47.                         while (curR != tR) {
  48.                                 System.out.print(m[curR][dC] + " ");
  49.                                 curR--;
  50.                         }
  51.                         while (curC != tC) {
  52.                                 System.out.print(m[tR][curC] + " ");
  53.                                 curC--;
  54.                         }
  55.                 }
  56.         }
  57. }
复制代码
回复 使用道具 举报
  1. import java.util.Scanner;

  2. public class Main {

  3.         public static void main(String[] args) {
  4.                 Scanner sc = new Scanner(System.in);
  5.                 int m = sc.nextInt();
  6.                 int n = sc.nextInt();
  7.                 int[][] arr = new int[m][n];
  8.                 for (int i = 0; i < m; i++) {
  9.                         for (int j = 0; j < n; j++) {
  10.                                 arr[i][j] = sc.nextInt();
  11.                         }
  12.                 }
  13.                 sc.close();
  14.                 spiralOrderPrint(arr);
  15.         }

  16.         public static void spiralOrderPrint(int[][] m) {
  17.                 int r = 0;
  18.                 int c = 0;
  19.                 int tR = 0;
  20.                 int tC = 0;
  21.                 int dR = m.length - 1;
  22.                 int dC = m[0].length - 1;
  23.                 int n = m.length * m[0].length;
  24.                 for (int count = 0; count < n; tR++, tC++, dR--, dC--) {
  25.                         while (r < dR && count <= n) {
  26.                                 System.out.print(m[r++][c] + " ");
  27.                                 count++;
  28.                         }
  29.                         while (c < dC && count < n) {
  30.                                 System.out.print(m[r][c++] + " ");
  31.                                 count++;
  32.                         }
  33.                         while (r > tR && count < n) {
  34.                                 System.out.print(m[r--][c] + " ");
  35.                                 count++;
  36.                         }
  37.                         while (c > tC && count < n) {
  38.                                 System.out.print(m[r][c--] + " ");
  39.                                 count++;
  40.                         }
  41.                         c++;
  42.                         r++;
  43.                 }
  44.         }

  45. }
复制代码
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马