代码拉取完成,页面将自动刷新
#include <list>
#include <iostream>
using namespace std;
bool My_Sort_Descending (const int & lhs, const int & rhs)
{
return ( lhs > rhs );
}
template <typename T>
void DisplayContent ( const T & container)
{
for (auto element = container.cbegin();
element != container.cend();
++element)
cout << *element << ' ';
cout << endl;
}
int main()
{
list <int> lisInt {0, 2, 4, 1, 3, 5};
cout << "Initial content of lisInt: " << endl;
DisplayContent(lisInt);
lisInt.sort();
cout << "After default sorting, content of lisInt: " << endl;
DisplayContent(lisInt);
lisInt.sort (My_Sort_Descending);
//函数名,不要带括号
//如果带上括号 error: too few arguments to function 'bool My_Sort_Descending'
cout << "After My_Sort_Descending, content of lisInt: " << endl;
DisplayContent(lisInt);
return 123;
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。