九宫格算法

 

[java] view plaincopy
 
    1. public class sjjg {     
    2.     
    3.     public static void main(String[] args) {     
    4.     
    5.         int n = 5;     
    6.     
    7.         // 0:向右,1:向下,2:向左,3:向上     
    8.         int direction = 0;     
    9.     
    10.         // 行,列     
    11.         int row = 0, col = 0;  
    12.     
    13.         int num = 0;     
    14.     
    15.         int[] array = new int[n * n];     
    16.         while (array[row * n + col] == 0) {     
    17.             num++;     
    18.             array[row * n + col] = num;     
    19.             switch (direction) {     
    20.             case 0:     
    21.                 col++;     
    22.                 break;     
    23.             case 1:     
    24.                 row++;     
    25.                 break;     
    26.             case 2:     
    27.                 col--;     
    28.                 break;     
    29.             case 3:     
    30.                 row--;     
    31.                 break;     
    32.             }     
    33.             if (row == n || col == n || row == -1 || col == -1    
    34.                     || array[row * n + col] != 0) {     
    35.                 direction++;     
    36.                 if (direction == 4)     
    37.                     direction = 0;     
    38.                 switch (direction) {     
    39.                 case 0:     
    40.                     row++;     
    41.                     col++;     
    42.                     break;     
    43.                 case 1:     
    44.                     row++;     
    45.                     col--;     
    46.                     break;     
    47.                 case 2:     
    48.                     row--;     
    49.                     col--;     
    50.                     break;     
    51.                 case 3:     
    52.                     row--;     
    53.                     col++;     
    54.                     break;     
    55.                 }     
    56.             }     
    57.         }     
    58.     
    59.         for (int i = 0; i < n; i++) {     
    60.             for (int j = 0; j < n; j++) {     
    61.                 System.out.printf("%-3s", array[i * n + j]);     
    62.             }     
    63.             System.out.println();     
    64.         }     
    65.     }     
    66. }    

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。