其他分享
首页 > 其他分享> > string(的一些用法)

string(的一些用法)

作者:互联网

/************
Author Smile
sort 排序的连续性
string 可以直接相加
排成一个最大的数必然是连续排着的最大
连续排着的最大,就可以用sort来实现
只要比较两个相加即可 
string 可以申明数组 
https://vjudge.csgrandeur.cn/contest/477345#problem/B
************/
#include <iostream>
#include <algorithm>
using namespace std;
const int N = 20;
int n;
string a[N];

bool comp(string a, string b)
{
	return a + b > b + a;
}

int main()
{
	ios::sync_with_stdio(false);
	cin.tie(0), cout.tie(0);
	cin >> n;
	for (int i = 1; i <= n; ++i)
	{
		cin >> a[i];
	}
	sort(a + 1, a + 1 + n, comp);
	for (int i = 1; i <= n; ++i)
	{
		cout << a[i];
	} 
	return 0;
} 

标签:sort,string,int,comp,用法,tie,一些,include
来源: https://blog.csdn.net/qq_63010655/article/details/123120140