Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- moreeffectiveC++
- UE4 커스텀로그
- unorder_map
- UELOG
- 람다
- 선택정렬
- stl
- 언리얼엔진구조체
- 델리게이트
- 크리티컬섹션
- map
- enumasByue
- 람다사용정렬
- 정렬
- 약참조
- C++
- 데이터애셋
- 알고리즘
- UE_LOG
- 강참조
- C++최적화
- 스마트포인터
- 자료구조
- 프로그래머스
- BFS
- dataasset
- UML관련
- 언리얼가비지컬렉터
- 정렬알고리즘
- 애셋로드
Archives
- Today
- Total
기억을 위한 기록들
[프로그래머스 lv 2 ] - 가장 큰 수 본문
programmers.co.kr/learn/courses/30/lessons/42746?language=cpp
cmp 함수 사용
#include <vector>
#include <string>
#include <algorithm>
using namespace std;
bool cmp(string a, string b) {
return a + b > b + a;
}
string solution(vector<int> numbers) {
string answer = "";
vector<string> temp;
for (auto num : numbers)
{
temp.push_back(to_string(num)); //string 변환 저장
}
sort(temp.begin(), temp.end(), cmp); //정렬하는데 더큰값이 먼저오게 ex) 3과 30이 있다면 330이 큰지 303이 큰지
if (temp.at(0) == "0")
{
return "0";
}
for (auto num : temp )
{
answer += num;
}
return answer;
}
cmp 함수대신 람다식 사용
#include <vector>
#include <string>
#include <algorithm>
using namespace std;
string solution(vector<int> numbers) {
string answer = "";
vector<string> temp;
for (auto num : numbers)
{
temp.push_back(to_string(num)); //string 변환 저장
}
//정렬하는데 더큰값이 먼저오게
sort(temp.begin(), temp.end(), [](string a, string b){ return a + b > b + a;});
if (temp.at(0) == "0")
{
return "0";
}
for (auto num : temp)
{
answer += num;
}
return answer;
}
'Coding Test - cpp > Sort' 카테고리의 다른 글
[프로그래머스 lv 1 ] - 6주차 (0) | 2021.09.10 |
---|---|
[HackerRank/C++] Big Sorting (0) | 2021.07.01 |
[프로그래머스 lv 1 ] - K번째수 (0) | 2021.04.21 |
[백준 10867: 중복 빼고 정렬하기] - C++ (0) | 2021.03.24 |
[백준 2108: 통계학] - C++ (0) | 2021.03.15 |