一聚教程网:一个值得你收藏的教程网站

热门教程

九宫图算法实现(过程表示法)

时间:2022-07-02 10:57:22 编辑:袖梨 来源:一聚教程网


 

///////////////////////////////////////
// 九宫图算法;
//////////////////////////////////////

#include
#include
#include

//////////////////////////////////
////     the function defination
//////////////////////////////////

void create(int [][3]);
void show(int [][3]);
void set_value(int [][3]);
void aim_get(int [][3]);
void target(int [][3]);
void judge_x1(int [][3]);
void judge_x2(int [][3]);
void judge_x3(int [][3]);
void judge_x4(int [][3]);
void judge_x5(int [][3]);
void shift_all(int [][3]);
void shift_low_six(int [][3]);
void anti_shift_all(int [][3]);
void shift_low_four(int [][3]);
void last_shift(int [][3]);
void set_x5(int [][3]);

///////////////////////////////////////
//////    the main function body  ////
////////////////////////////////////////

main()
{
 
  srand(time(NULL));
  int cDiagram[3][3];
  create(cDiagram);     ///////   creat the new array ,set the value are 10;
  set_value(cDiagram);
  //last_shift(cDiagram);
  return 0;
}

///////////////////////////////////////
///  建立一个3*3数组,初值都设为10;//
//////////////////////////////////////

void create(int array[][3])
{
 printf("nn***********************************nn");
    printf("九宫图算法实现过程nn");
 printf("***********************************nn");

    int line;
 int row;

 for(line=0;line<3;line++)
 {
  for(row=0;row<3;row++)
  {
   array[line][row]=10;
  }
 }
    // set_value(array);
 //show(array);
}

/////////////////////////////////////////
///  显示数组状态  ////
////////////////////////////////////////

void show(int array[][3])
{  
 for(int i=0;i<3;i++)
 {
  for(int j=0;j<3;j++)
  {
   printf("%3d",array[i][j]);

  }
  printf("nn");
 }


}

热门栏目