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
- 람다
- UE_LOG
- 스마트포인터
- 선택정렬
- 데이터애셋
- enumasByue
- 언리얼가비지컬렉터
- stl
- 정렬
- UELOG
- 정렬알고리즘
- unorder_map
- C++
- moreeffectiveC++
- UML관련
- 크리티컬섹션
- dataasset
- 알고리즘
- 자료구조
- 프로그래머스
- BFS
- 람다사용정렬
- 약참조
- 언리얼엔진구조체
- 델리게이트
- UE4 커스텀로그
- map
- 애셋로드
- C++최적화
- 강참조
Archives
- Today
- Total
기억을 위한 기록들
[백준 1427: 소트인사이드] - C++ 본문
#include<iostream>
#include<string>
#include<algorithm>
#include<memory>
using namespace std;
int main()
{
string n;
cin >> n;
unique_ptr<int[]> arr = make_unique<int[]>(n.size());
for (int i = 0; i < n.size(); i++)
{
arr[i] = n[i]-'0';
}
int curIndex = 0;
for (int i = 0; i < n.size(); i++)
{
curIndex = i;
for (int j = i + 1; j < n.size(); j++)
{
if (arr[curIndex] < arr[j])
curIndex = j;
}
int temp = arr[curIndex];
arr[curIndex] = arr[i];
arr[i] = temp;
}
for (int i = 0; i < n.size(); i++)
{
cout << arr[i];
}
cout << "\n";
return 0;
}
'Coding Test - cpp > Sort' 카테고리의 다른 글
[백준 11650: 좌표 정렬하기] - C++ (0) | 2021.03.04 |
---|---|
[백준 1181: 단어 정렬] - C++ (0) | 2021.02.19 |
[백준 10989: 수 정렬하기3] - C++ (0) | 2021.02.16 |
[백준 2751: 수 정렬하기2] - C++ (0) | 2021.02.16 |
[백준 2750: 수 정렬하기] - C++ (0) | 2021.02.16 |