gpt4 book ai didi

c++ - 按数字排序

转载 作者:塔克拉玛干 更新时间:2023-11-03 05:48:58 24 4
gpt4 key购买 nike

为什么这段代码不起作用?它没有显示输出

#include <stdlib.h>
#include <iostream>
#include <string.h>
void Sort(int *arr,int length){
int *iter=arr;
char buf[12],buf1[12];
while ((iter++)< (arr+length)){

if (iter==arr || (strcmp(itoa(*iter,buf,10),itoa(*(iter-1),buf1,10))>=0)){
iter++;
}
else{
*iter^=*(iter+1);
*(iter+1)^=*iter;
*iter^=*(iter+1);
iter--;
}

}


}

int main(){

int a[]={1,2,10,100,19,21,2,4,31};
int n=sizeof(a)/sizeof(int);
Sort(a,n);
for(int i=0;i<n;i++)
std::cout<<a[i]<<" ";




return 0;
}

请帮忙

最佳答案

这是使用 gcc 4.5.1 的输出:

> g++ -o test test.cpp
> test.exe
1 2 10 100 19 21 2 4 31

如您所见,它在我这里编译和运行良好。不过,它是否按预期工作是另一回事。

您确定在编译前保存了更改吗?您使用的是什么编译器?


此外,您最好使用 std::vector 来存储整数,并使用带有自定义 comparator 对象的 std::sort 来做排序。

关于c++ - 按数字排序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4030758/

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