栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > C/C++/C#

C++的STL容器中sort()函数的使用方法

C/C++/C# 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

C++的STL容器中sort()函数的使用方法

#include

#include//sort()函数所需头文件 

using namespace std;

int main()

{

	int a[10] = { 4,5,9,3,8,2,1,4,0,3 };//初始化数组 

	for (int i = 0; i < 10; i++)

		cout << a[i];
	cout << endl;

	sort(a, a + 10);//没有第三个参数,系统默认从小到大排序 

	for (int i = 0; i < 10; i++)

	{
		cout << a[i] << " ";
	}
	return 0;

}

输出:

#include

#include//sort()函数所需头文件 

using namespace std;

int main()

{

	int a[10] = { 4,5,9,3,8,2,1,4,0,3 };//初始化数组 
	cout << "数组原顺序:" << endl;
	for (int i = 0; i < 10; i++)
		cout << a[i] << " ";
	cout << endl;
	sort(a, a + 10);
	cout << "STL中sort();默认从小到大:" << endl;
	for (int i = 0; i < 10; i++)
		cout << a[i] << " ";
	cout << endl;
	//greater()尖括号里面加数据类型排序
	sort(a, a + 10,greater());
	cout<<"使用greater()从大到小:" << endl;
	for (int i = 0; i < 10; i++)
		cout << a[i] << " ";
	cout << endl;

	sort(a, a + 10, less());
	cout<<"使用less()从小到大:" << endl;
	for (int i = 0; i < 10; i++)
		cout << a[i] << " ";
	cout << endl;
	return 0;

}

输出:

 用另一种数据类型char实现

#include

#include//sort()函数所需头文件 

using namespace std;

int main()

{

	char a[4];
	cout << "请输入字符" << endl;
	for (int i = 0; i < 4; i++)
	{
		cin >> a[i];
	}
	cout << "数组原顺序:" << endl;
	for (int i = 0; i < 4; i++)
		cout << a[i] << " ";
	cout << endl;
	sort(a, a + 4);
	cout << "STL中sort();默认从小到大:" << endl;
	for (int i = 0; i < 4; i++)
		cout << a[i] << " ";
	cout << endl;
	//greater()尖括号里面加数据类型排序
	sort(a, a + 4,greater());
	cout<<"使用greater()从大到小:" << endl;
	for (int i = 0; i < 4; i++)
		cout << a[i] << " ";
	cout << endl;

	sort(a, a + 4, less());
	cout<<"使用less()从小到大:" << endl;
	for (int i = 0; i < 4; i++)
		cout << a[i] << " ";
	cout << endl;
	return 0;

}

输出结果:

 

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/604621.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号