我在main()
中列出了不同的功能:
puzzle1(ar);
puzzle2(ar);
puzzle3(ar);
puzzle4(ar);
puzzle5(ar);
我想随机选择只有一个要调用的函数。我该怎么做才能实现这一目标?
谢谢!
编辑1:我的功能都是2D阵列
编辑2:从评论中获得更多帮助。
编辑3:在得到更多帮助后,我完成了以下工作:
srand(time(NULL));
int rand_output = rand()%5;
int (*fp[5])(char finalpuzzle[NROW][NCOL]);
int main();
char ar[NROW][NCOL];
int x,y,fp=0;
fp[0]=puzzle1;
fp[1]=puzzle2;
fp[2]=puzzle3;
fp[3]=puzzle4;
fp[4]=puzzle5;
(*fp[rand_output])(x,y);
我做错了什么? 我得到的错误是:
expected declaration specifier or '.....' before 'time'
在srand
行上
initializer element is not constant
在int rand_output
行上
subscripted value is neither array nor pointer nor vector
在(*fp[rand_output])(x,y)
行上
和一堆警告initialization from incompatible pointer type
答案 0 :(得分:2)
使用rand()
选择一个索引,并从函数指针列表中调用该索引处的函数。
srand(time(NULL)); // called once
int rand_output = rand()%5;
int (*fp[5]) (int ar[]);
..
..
fp[0]=puzzle1;
fp[1]=puzzle2;
..
(*fp[rand_output])(arr);
或者只是一行: -
int (*fp[5])(int[])={puzzle1, puzzle2,. ...., puzzle5};
#include<stdio.h>
#include<stdlib.h>
#include<time.h>
void op1(int ar[][2]){
printf("%s","ok");
}
void op2(int ar[][2]){
printf("%s","ok2");
}
int main(){
int z[2][2]={{0,1},{2,4}};
srand(time(NULL)); // called once
int rand_output = rand()%2;
void (*fp[2]) (int ar[][2]);
fp[0]=op1;
fp[1]=op2;
(*fp[rand_output])(z);
}