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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始



7、写一方法,打印等长的二维数组,要求从1开始的自然数由方阵的最外圈向内螺旋方式地顺序排列。

4 个回复

倒序浏览

public class Printx {
        public static void main(String[] args)
        {        
                setN(6);
        }
        
        public static void setN(int n)
        {
                int[][] arr=new int[n][n];
                int x=0;                                                        //用于记录每次的赋值
                int y=0;                                                        //用于改变每次赋值的起始点
                for(;n>=0;n--)
                {
                        x=give(arr,x,y,n);
                        give(arr,x,y,n);
                        y++;
  }
                printArr(arr);
        }
        
        public static void printArr(int[][] arr)//打印函数
        {
                for (int[] is : arr)
                {
                        for (int i : is)
                        {
                                if(i>=10)
                                        System.out.print(i+" ");
                                else
                                        System.out.print(" "+i+" ");
                        }
                        System.out.println();
                }
        }
   public static int give(int[][] arr,int x,int y,int n)//单圈赋值函数
        {
                for (int a=0;a<n;a++)
                {
                        if(arr[y][a]==0)
                                arr[y][a]=++x;
                }
                for (int a=0;a<n;a++)
                {
                        if(arr[a][n-1]==0)
                                arr[a][n-1]=++x;
                }
                for (int a=n-1;a>=0;a--)
                {
                        if(arr[n-1][a]==0)
                        {
                                arr[n-1][a]=++x;
                        }
  }
                for (int a=n-1;a>=0;a--)
                {
                        if(arr[a][y]==0)
                        {
                                arr[a][y]=++x;
                        }
                }
                return x;
        }
}
回复 使用道具 举报
用两个for循环嵌套
回复 使用道具 举报
[Java] 纯文本查看 复制代码
import java.util.Scanner;

/**
 * 
 * @author AnCheng
 *
 */
public class 回形取数 {

	private static Scanner sc;

	public static void main(String[] args) {

		sc = new Scanner(System.in);
		String[] str1 = sc.nextLine().split(" ");
		int x = Integer.parseInt(str1[0]);
		int y = Integer.parseInt(str1[1]);
		
		String[][] arr = new String[x][y];
		for (int i = 0; i < x; i++) {
			String[] str = sc.nextLine().trim().split(" ");
			arr[i] =str;
			
		}
		spiralOrderPrint(arr);
	}

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

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

	}

	public static void printEdge(String[][] m, int tR, int tC, int dR, int dC) {
		if (tR == dR) {
			for (int i = tC; i <= dC; i++) {
				System.out.print(m[tR][i] + " ");
			}
		} else if (tC == dC) {
			for (int i = tR; i <= dR; i++) {
				System.out.print(m[i][tC] + " ");
			}
		} else {
			int curC = tC;
			int curR = tR;
			while (curR != dR) {
				System.out.print(m[curR][tC] + " ");
				curR++;
			}
			while (curC != dC) {
				System.out.print(m[dR][curC] + " ");
				curC++;
			}
			while (curR != tR) {
				System.out.print(m[curR][dC] + " ");
				curR--;
			}
			while (curC != tC) {
				System.out.print(m[tR][curC] + " ");
				curC--;
			}
		}
	}
}
回复 使用道具 举报
[Java] 纯文本查看 复制代码
import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int m = sc.nextInt();
		int n = sc.nextInt();
		int[][] arr = new int[m][n];
		for (int i = 0; i < m; i++) {
			for (int j = 0; j < n; j++) {
				arr[i][j] = sc.nextInt();
			}
		}
		sc.close();
		spiralOrderPrint(arr);
	}

	public static void spiralOrderPrint(int[][] m) {
		int r = 0;
		int c = 0;
		int tR = 0;
		int tC = 0;
		int dR = m.length - 1;
		int dC = m[0].length - 1;
		int n = m.length * m[0].length;
		for (int count = 0; count < n; tR++, tC++, dR--, dC--) {
			while (r < dR && count <= n) {
				System.out.print(m[r++][c] + " ");
				count++;
			}
			while (c < dC && count < n) {
				System.out.print(m[r][c++] + " ");
				count++;
			}
			while (r > tR && count < n) {
				System.out.print(m[r--][c] + " ");
				count++;
			}
			while (c > tC && count < n) {
				System.out.print(m[r][c--] + " ");
				count++;
			}
			c++;
			r++;
		}
	}

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