gpt4 book ai didi

c++ - 为插入排序获得有趣的输出

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

我正在尝试实现插入排序。我的逻辑可能是错误的,因为由于某些错误我无法完成我的代码。我需要帮助解决执行过程中值(value)观的荒谬变化。此外,还有一个类似的重复元素问题,但它是在 python 中,它让我头疼。所以,请不要将其标记为重复。

如你所见,我已经初始化了一个临时变量索引,你为什么问?因为 N 的值在运行时会发生变化。其次,在进行排序时 Value 会重复。我正在使用代码块 17.2。

#include<iostream>
#include<utility>
#include<algorithm>

using namespace std;

int main()
{
ios_base::sync_with_stdio(false);
cin.tie(0);

int arr[100];
int N,index;
cin>>N;

for(int i=0;i<N;i++)
{
cin>>arr[i];
}
index=N; // using temperory variable
for(int l=0;l<index;l++)
{
for(int j=l+1;j>=0;j--)
{

if(l==index-1 || j==0) //Working fine now
break;

if(arr[j]<arr[j-1])
{

swap(arr[j],arr[j-1]);
}


}
cout<<N<<endl; //value of n is changing but why
for(int k=0;k<index;k++)
{

cout<<arr[k]<<" "; //value of array is also coming wrong
}
cout<<"\n";

}

return 0;
}

N=7和数组的元素是

7 8 5 2 4 6 3

输出是

7 //these are the values of N which is changing

7 8 5 2 4 6 3

5

7 7 8 2 4 6 3

2

5 7 7 8 4 6 3

2

4 5 7 7 8 6 3

2

4 5 6 7 7 8 3

2

3 4 5 6 7 7 8

0

2 3 4 5 6 7 7

最佳答案

检查边界条件,当访问不存在的数组索引时,它将给出未定义的行为。在这种情况下,N 似乎存储在 arr 之前,并且在您修改 arr[-1] 时发生了变化。

关于c++ - 为插入排序获得有趣的输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56810512/

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