gpt4 book ai didi

c++ - 合并排序程序中的段错误

转载 作者:行者123 更新时间:2023-11-30 21:39:46 24 4
gpt4 key购买 nike

这是代码

#include<stdio.h>

#include<conio.h>

int a[3];

int b[3];

void merge(int a,int mid,int b); //merge declaration

void mergesort(int i,int j)
{

int mid;

while(i<j)
{

mid=(i+j)/2;

mergesort(i,mid);

mergesort(mid+1,j);

}

merge(i,mid,j);

}


void merge(int c,int mid,int l) //c-first index,l,last index
{

int k=0;

int i=c;

int j=mid+1;

while((i<mid) && (j<l))
{

if(a[i]>a[j])

b[k++]=a[j++];

else

b[k++]=a[i++];
}

while(i<mid)
{

b[k++]=a[i++];
}

while(j<l)

b[k++]=a[j++];
}

int main()
{

int i;

a[0]=3;

a[1]=2;

a[2]=4;

mergesort(0,2);

for(i=0;i<3;i++)

printf("the nums are=%d\n",b[i]);
}

预期输出是

the nums are=2
the nums are=3
the nums are=4

最佳答案

ab 数组的长度为 3 个成员,但在 merge 中,您使用实际值作为索引

关于c++ - 合并排序程序中的段错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29100997/

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