注册 登录
编程论坛 C++教室

为什么我这段代码可以运行,结果却不对呢

后卿 发布于 2023-03-06 18:48, 190 次点击
#include<iostream>
using namespace std;
template <typename T>
void mySwap(T a,T b)
{
    T temp = a;
    a = b;
    b = temp;
}
void sort(int *a, unsigned len, bool bigger=true )
{
    for(int i=1;i<len;i++)
        for (int i = 1; i < len; i++)
        {
            bool bcase = bigger ? a[i] > a[i - 1]:a[i] < a[i - 1];
            if (bcase) mySwap(a[i],a[i-1]);
        }
}
int main()
{
    int a[5]{ 1,8,3,4,5 };
    sort(a, 5);
    for (auto x : a)std::cout << x << std::endl;
    system("pause");
    return 0;
}
有么有人知道,能告诉我吗非常感谢
4 回复
#2
apull2023-03-06 21:26
void mySwap(T &a, T &b)  用引用在函数中更改实参的值。
#3
rjsp2023-03-07 09:45
2楼 apull 说得对

假如你不是在完成作业练习,而可以直接使用标准模板库
程序代码:
#include <iostream>
#include <iterator>
#include <algorithm>
using namespace std::ranges;

int main( void )
{
    int a[] = { 1,8,3,4,5 };
    sort( a, std::greater<>() );
    copy( a, std::ostream_iterator<decltype(*a)>(std::cout,"\n") );
}
#4
后卿2023-03-08 11:59
回复 3楼 rjsp
抱歉,我没学到那里
#5
后卿2023-03-08 12:00
回复 2楼 apull
好的非常感谢!
1