免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1612 | 回复: 7
打印 上一主题 下一主题

一道测试题,谁能给出答案? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2006-07-14 11:01 |只看该作者 |倒序浏览
一个整形数组a[25]里是1--25的数把这二十五个数按     
        1    2   3   4  5
            16 17 18 19 6
            15 24 25 20 7
            14 23 22 21 8
            13 12 11 10 9
这种顺序输出,用循环for做

论坛徽章:
0
2 [报告]
发表于 2006-07-14 12:58 |只看该作者
这样的题还是楼主自己做好.

  1. #include<stdio.h>

  2. int main(void)
  3. {
  4.     int n=5,i,j;
  5.     int a[5][5];
  6.     int k=0;
  7.     int l=(n+1)/2;
  8.     for(i=0;i<l;i++)
  9.     {
  10.        for(j=i;j<n-i;j++)
  11.          a[i][j]=++k;
  12.        for(j=i+1;j<n-i;j++)
  13.          a[j][n-i-1]=++k;
  14.        for(j=n-i-2;j>=i;j--)
  15.          a[n-i-1][j]=++k;
  16.        for(j=n-i-2;j>i;j--)
  17.          a[j][i]=++k;
  18.     }
  19.     for(i=0;i<n;i++)
  20.      {
  21.         for(j=0;j<n;j++)
  22.           printf("%3d",a[i][j]);
  23.         printf("\n");
  24.      }
  25.     return 0;
  26. }
复制代码

论坛徽章:
0
3 [报告]
发表于 2006-07-14 13:24 |只看该作者
有问题吧?人家说的是数组a[25],而不是a[5][5]哦。。。

论坛徽章:
0
4 [报告]
发表于 2006-07-14 16:54 |只看该作者
看不懂!

论坛徽章:
0
5 [报告]
发表于 2006-07-14 17:39 |只看该作者
简单地说就是一次循环,绕一周

论坛徽章:
0
6 [报告]
发表于 2006-07-15 13:33 |只看该作者
看我写的及格没有?
#include <stdlib.h>
#include <stdio.h>

enum
{ NDIRECTIONS = 4 };

int directions[NDIRECTIONS][3] = {
  {1, 0, 1}, {0, 1, 5}, {-1, 0, -1}, {0, -1, -5}
};

int
main (void)
{
  int directionidx = 0;
  int x = 0, y = 0, idx = 0;
  int a[25];
  int i;

  memset (a, '\0', sizeof (a));
  idx = 0;
  for (i = 1; i <= 25; i++)
    {
      a[idx] = i;
      x += directions[directionidx][0];
      y += directions[directionidx][1];
      idx += directions[directionidx][2];
      if (x >= 5 || x < 0 || y >= 5 || y < 0 || a[idx] != 0)
        {
          x -= directions[directionidx][0];
          y -= directions[directionidx][1];
          idx -= directions[directionidx][2];
          directionidx++;
          if (directionidx >= NDIRECTIONS)
            directionidx = 0;
          x += directions[directionidx][0];
          y += directions[directionidx][1];
          idx += directions[directionidx][2];
        }
    }

  for (i = 0; i < 25; i++)
    {
      if ((i + 1) % 5)
        printf ("%.2d ", a[i]);
      else
        printf ("%.2d\n", a[i]);
    }
}

论坛徽章:
0
7 [报告]
发表于 2006-07-15 13:41 |只看该作者
觉得把那些1-25数字按输出顺序存在数组里面,直接输出来好了他都说了就1-25的数,存在容量为25的数组里...
呵呵...

论坛徽章:
0
8 [报告]
发表于 2006-07-15 15:51 |只看该作者
改进了一下
void clockwisematrixfill (int n)
{
  enum
  { NDIRECTIONS = 4 };
  int directions[NDIRECTIONS][4] = {
    {1, 0, 1, 4}, {0, 1, 5, 4}, {-1, 0, -1, 0}, {0, -1, -5, 0}
  };
  int (*pd)[4];
  int coor[2];
  int *ai, *pa;
  int i, nn, directionidx = 0;

  nn = n * n;
  ai = (int *) calloc (nn, sizeof (int));
  pd = directions;
  (*pd)[2] = 1;   (*pd)[3] = n - 1;   pd++;
  (*pd)[2] = n;   (*pd)[3] = n - 1;   pd++;
  (*pd)[2] = -1;   (*pd)[3] = 0;   pd++;
  (*pd)[2] = -n;   (*pd)[3] = 0;

  coor[0] = coor[1] = 0;
  pa = ai;
  pd = directions;
  for (i = 1; i <= nn; i++)
    {
      *pa = i;
      if (coor[directionidx % 2] == (*pd)[3] || *(pa + (*pd)[2]) != 0)
        {
          directionidx++;
          pd++;
          if (directionidx >= NDIRECTIONS)
            {
              directionidx = 0;
              pd = directions;
            }
        }
      coor[0] += (*pd)[0];
      coor[1] += (*pd)[1];
      pa += (*pd)[2];
    }

  for (i = 0, pa = ai; i < nn; i++, pa++)
    {
      if ((i + 1) % n)
        printf ("%.2d ", *pa);
      else
        printf ("%.2d\n", *pa);
    }
  printf ("\n");
  free (ai);
}
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP