gpt4 book ai didi

c - C 中的 Shell 排序未给出所需结果

转载 作者:行者123 更新时间:2023-12-01 01:50:43 24 4
gpt4 key购买 nike

我需要在 C 中实现 Shell 排序并使用优化版本(其中间隙首先设置为 array/2 的大小,然后将此数字重复除以 2.2)。问题是答案并不总是完全排序,我不确定这是因为我的代码中的某些逻辑错误还是 Shell 排序的某些缺点。

这是我的代码:

#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include <time.h>
#define MAX 7

void shellSort(int *a, int size);
void insert(int *a, int next_pos, int gap);

void shellSort(int *a,int size)
{
int gap = floor(size/2);
int next_pos;
while (gap>0)
{
for(next_pos = gap; next_pos < size; next_pos++)
insert(a, next_pos, gap);

if(gap == 2)
gap = 1;
else
gap = (int)(gap/2.2);
}
}

void insert(int *a, int next_pos, int gap)
{
int value = a[next_pos];
while(next_pos >= gap && a[next_pos] < a[next_pos-gap])
{
a[next_pos] = a[next_pos-gap];
next_pos = next_pos - gap;
}
a[next_pos] = value;
}

int main()
{
int nums[MAX];
time_t t;
srand((unsigned) time(&t)); // seed randomiser

printf("Array before sorting:\n");
int i;
for(i=0; i<MAX; i++)
{
nums[i] = rand() % 101; // filling array with random numbers
printf("%d\t", nums[i]);
}

shellSort(nums, MAX);

printf("\nArray after sorting:\n");
for(i=0; i<MAX; i++)
printf("%d\t", nums[i]);

return 0;
}

以下是我的输出:

Array before sorting:
74 26 1 12 38 81 94
Array after sorting:
12 1 26 38 74 81 94

编辑:在我完成问题之前发布 哎呀

最佳答案

我认为你的问题出在这里:

 int value = a[next_pos];
while(next_pos >= gap && a[next_pos] < a[next_pos-gap])

由于您要更改下面几行中的 next_pos,我认为这些行应该是这样的(如果我对 shellsort 的理解是正确的):

 int value = a[next_pos];
while(next_pos >= gap && value < a[next_pos-gap])

关于c - C 中的 Shell 排序未给出所需结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36661591/

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