Programers:文字列内で任意にソート
3537 ワード
条件別sort()
コード#コード# #include <string>
#include <vector>
#include <algorithm>
using namespace std;
int index;
bool compare(string a, string b) {
if (a[index] < b[index]) return true;
if (a[index] > b[index]) return false;
return a < b;
}
vector<string> solution(vector<string> strings, int n) {
vector<string> answer;
index = n;
sort(strings.begin(), strings.end(), compare);
answer = strings;
return answer;
}
Reference
この問題について(Programers:文字列内で任意にソート), 我々は、より多くの情報をここで見つけました
https://velog.io/@neity16/Programers-문자열-내-마음대로-정렬하기
テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol
#include <string>
#include <vector>
#include <algorithm>
using namespace std;
int index;
bool compare(string a, string b) {
if (a[index] < b[index]) return true;
if (a[index] > b[index]) return false;
return a < b;
}
vector<string> solution(vector<string> strings, int n) {
vector<string> answer;
index = n;
sort(strings.begin(), strings.end(), compare);
answer = strings;
return answer;
}
Reference
この問題について(Programers:文字列内で任意にソート), 我々は、より多くの情報をここで見つけました https://velog.io/@neity16/Programers-문자열-내-마음대로-정렬하기テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol