结构体快排回顾(sort)

一般来说,我做竞赛的时候排序一般用快排

很快很方便

普通sort(从小到大)

sort(a,a+n);

直接贴一段代码吧,包含了vector,sort,结构体等简单东西综合

#include 
#include 
#include 

using namespace std;

typedef struct example
{
    int elem1;
    int elem2;
}example;

/*这个comparison函数很重要.如果希望升序排序,就是"<",降序排列就是">"号,这样便于直观记忆.如果希望用elem2作为比较标准
就把elem1改为elem2,这样结构体就以elem2为比较标准排序了.*/
bool comparison(example a,example b){
    return a.elem1>N;

    vector array(N);

    for(int i=0;i>array[i].elem1>>array[i].elem2;
    }

    sort(array.begin(),array.end(),comparison);

    for(int i=0;i

  

再搞一段

#include 
#include 
#include 
using namespace std;

typedef struct index 
{
	int a,b;
}index;

bool cmp(index a , index b)
{
	if (a.a > b.a )
	{
		return true;
	}
	else
		if ( a.a == b.a  )
		{
			if (a.b > b.b )
			{
				return true ;
			}
		}
	return false ;
}

int main()
{
	index c[100];
	srand( time(0) );
	for (int i = 0 ; i < 100 ; ++i )
	{
		c[i].a = rand()%10 ; 
		c[i].b = rand()%10 ;
	}

	sort( c , c+100 , cmp );


	for (i = 0 ; i < 100 ; ++i )
	{
		cout<

  

转载于:https://www.cnblogs.com/SSYYGAM/p/6090716.html

你可能感兴趣的:(结构体快排回顾(sort))