09-排序1. 排序(25)

09-排序1. 排序(25)

时间限制
5000 ms
内存限制
128000 kB
代码长度限制
8000 B
判题程序
Standard
作者
CHEN, Yue

给定N个(长整型范围内的)整数,要求输出从小到大排序后的结果。

本题旨在测试各种不同的排序算法在各种数据情况下的表现。各组测试数据特点如下:

  • 数据0:只有1个元素;
  • 数据1:11个不相同的整数,测试基本正确性;
  • 数据2:103个随机整数;
  • 数据3:104个随机整数;
  • 数据4:105个随机整数;
  • 数据5:105个顺序整数;
  • 数据6:105个逆序整数;
  • 数据7:105个基本有序的整数;
  • 数据8:105个随机正整数,每个数字不超过1000。

输入格式:

输入第一行给出正整数N(<= 105),随后一行给出N个(长整型范围内的)整数,其间以空格分隔。

输出格式:

在一行中输出从小到大排序后的结果,数字间以1个空格分隔,行末不得有多余空格。

输入样例:
11
4 981 10 -17 0 -20 29 50 8 43 -5
输出样例:
-20 -17 -5 0 4 8 10 29 43 50 981


爱偷懒的我作弊了,哪位大侠有具体的方法能献出来让小弟我参悟就更好了

#include
#include
#include
using namespace std;

bool cmp(const int &a,const int &b){
	if(a < b) 
		return true;
	return false;
}

int main()
{
	int i,j,N,num;
	vector s;
	vector::iterator it;
	cin>>N;
	for(i=0;i>num;
		s.push_back(num);
	}
	sort(s.begin(),s.end(),cmp);
	for(it=s.begin();it!=s.end();it++){
		if(it!=s.begin())
			cout<<" ";
		cout<<(*it);
	}
	return 0;
}



你可能感兴趣的:(09-排序1. 排序(25))