其他分享
首页 > 其他分享> > Sort 函数的使用

Sort 函数的使用

作者:互联网

sort函数的使用必须加上头文件“#include<algorithm>”和“using namespace std;”。

sort函数使用方法:sort(首元素地址,尾元素地址的下一个地址,比较函数);

其中,前两个是必填的,比价函数是非必填的,根据实际情况填写

#include<cstdio>
#include<algorithm>
using namespace std;
int main(){
	int a[6]={9,4,2,5,6,-1};
	sort(a,a+4);
	for(int i=0;i<6;i++){
		printf("%d ",a[i]);
	}
	return 0;
} 

 

标签:Sort,sort,函数,必填,int,namespace,使用,include
来源: https://blog.csdn.net/WJXABC3711/article/details/122681018