gpt4 book ai didi

c - 随机数快速排序

转载 作者:行者123 更新时间:2023-11-30 17:44:40 36 4
gpt4 key购买 nike

我想对随机生成的数组进行快速排序(作业)。我得到了一个生成随机数组的函数“randomArray”。但是,我没有得到正确的结果。谁能指出我的代码有什么问题吗?

我的代码中的指针可能有问题。我不太明白为什么(给定的)“randomArray”函数采用指针变量。

#ifndef UTIL_H
#define UTIL_H

#include <time.h>
#include <sys/time.h>
#include <stdlib.h>

#define MIN 0
#define MAX 100000

void quicksort(double *a[], int n)
{
if (n <= 1) return;
double *p = a[n/2];
double *b[n], *c[n];
int i, j = 0, k = 0;
for (i=0; i < n; i++) {
if (i == n/2) continue;
if ( a[i] <= p) b[j++] = a[i];
else c[k++] = a[i];
}
quicksort(b,j);
quicksort(c,k);
for (i=0; i<j; i++) a[i] =b[i];
a[j] = p;
for (i= 0; i<k; i++) a[j+1+i] =c[i];
}

void
randomArray (double *array, int length)
{
int i ;
for (i = 0; i < length; i++)
{
array[i] =
(double) (rand () /
(((double) RAND_MAX + 1) / (double) (MAX - MIN + 1))) + MIN;
}
}

int main(void) {
int i;
/* das Array zum Sortieren */
double test_array[9];

randomArray(test_array, 9);
quicksort(test_array, 9);

for(i = 0; i < 9; i++)
printf("%f ", test_array[i]);
printf("\n");

return 0;
}

最佳答案

您在主函数中分配一个数组:

double test_array[9];

将数组传递给函数时

randomArray(test_array,  9);

它衰减为指针,这就是为什么你还需要传递它的长度:

randomArray (double *array, int length)

关于c - 随机数快速排序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19896123/

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