- 论坛徽章:
- 0
|
#include <stdio.h>
int matrix[100][100];
void getMatrix(int limit);
int checkPoint(int x, int y, int limit);
int main(int argc, char *argv[])
{
int limit=atoi(argv[1]);
if(limit>100){
printf("the limit is too large, under 100 please");
return 0;
}
int i, j;
for(i=0;i<100;i++){
for(j=0;j<100;j++){
matrix[i][j]=0;
}
}
getMatrix(limit);
for(i=0;i<limit;i++){
for(j=0;j<limit;j++){
printf("%4d",matrix[i][j]);
}
printf("\n");
}
printf("\n");
return 0;
}
void getMatrix(int limit)
{
int step[4][2]={{0,1},{1,0},{0,-1},{-1,0}};
int count=1, pointCount=limit*limit, type=0;
int curX=0, curY=0;
matrix[curX][curY]=count++;
while(count<=pointCount){
if(checkPoint(curX+step[type][0], curY+step[type][1], limit)){
curX+=step[type][0];
curY+=step[type][1];
}else{
type=(type+1)%4;
curX+=step[type][0];
curY+=step[type][1];
}
matrix[curX][curY]=count++;
}
}
int checkPoint(int x, int y, int limit)
{
return (x>=0 && x<limit && y>=0 && y<limit && matrix[x][y]<=0)?1:0;
} |
|