gpt4 book ai didi

c - c语言中函数指针的正确使用方法

转载 作者:行者123 更新时间:2023-11-30 15:16:08 26 4
gpt4 key购买 nike

我有这个问题:

我有一个程序,可以计算两种算法(shellsort 和插入排序)在三个不同数组中的执行时间(最有利的情况、最不利的情况和随机情况),所以基本上我需要做一个执行相同操作的函数事情六次(shell排序最有利的情况,shell排序最不利的情况和shell排序随机情况,插入排序也是如此),但我不想复制和粘贴代码六次,并且具有六个情况的函数不是'效率很高。所以我试图理解函数指针,但我不知道如何在那里使用它。这是我的代码:

void testInsMostUnfavorableCase()
{
int i,j,n=500,K=1000,p=0;
double c,d,t1,t2,t;
printf("Insertion sort on most unfavorable case\n");
printf("%9s%20s%12s%12s%12s\n", "n","t(n)","t(n)/n^0.8","t(n)/n","t(n)/nlogn");
for(i=1;i<8;i++)
{
int v[n];
descending(v,n); //THERE
c=microseconds();
ins_sort(v,n); //THERE
d=microseconds();
t=d-c;
if(t<500) /*times <500ms */
{
p=1;
c=microseconds();
for(j=0;j<K;j++)
{
descending(v,n); //THERE
ins_sort(v,n); //THERE
}
d=microseconds();
t1=d-c;
c=microseconds();
for(j=0;j<K;j++)
descending(v,n); //THERE
d=microseconds();
t2=d-c;
t=(t1-t2)/K;
printf("%3s%6d%20.3f%12f%12f%12f\n","(*)",n,t,t/pow(n,0.8),t/n,t/(n*log(n)));
}
else
printf("%9d%20.3f%12f%12f%12f\n",n,t,t/pow(n,0.8),t/n,t/(n*log(n)));
n=n*2;
}
if(p==1)
printf("%s%d%s\n","*: Average time (in microseconds) of ",K," algorithm executions." );
}

void testInsMostFavorableCase() {...}
void testInsRandomCase() {...}
void testShellMostUnfavorableCase() {...}
void testShellMostFavorableCase() {...}
void testShellRandomCase() {...}

问题是我必须重复六次才能用 THERE 更改注释行。您还有其他使用函数指针或其他内容的解决方案吗?

最佳答案

I don't want to copy&paste the code six times

那就别这么做了。这三个测试用例仅在输入数据上有所不同 ->

benchmarkInsertionSort( int[] data, int dataSize)

您将为每个算法编写此函数一次,并为每个测试数据集调用它一次,例如

benchmarkInsertionSort(dataset1, 500);
benchmarkInsertionSort(dataset2, 500);
benchmarkInsertionSort(dataset3, 500);

在您的代码中,将每个测试运行的设置(例如 int v[n];scending(v,n);)与要测试的实际操作分开。

如果您确实愿意,可以使用函数指针来使基准代码更加通用:

// Define a type for a pointer to a void function with two arguments (int[],int):
typedef void (*sort_function_t)(int[] data, int size);

// A function compatible with the pointer type above:
void ins_sort( int[] data, int size ) {
...
}

// Another function compatible with the pointer type above:
void shell_sort( int[] data, int size ) {
...
}

void benchmarkSortAlgo( sort_function_t sortFunction, int[] data, int dataSize ) {
...
// Call the function pointed to by the sortFuntion parameter:
sortFunction(data,dataSize);
...
}

...
// Pass pointers to the sort function to the benchmark.
// Note that we get the pointer to a function by just using 'functionname' without any parenthesis!
benchmarkSortAlgo( ins_sort, testData1, 500 );
benchmarkSortAlgo( shell_sort, testData2, 500 );
...

关于c - c语言中函数指针的正确使用方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33209826/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com