Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 자료구조
- 백준 2447
- 백준 17779
- 5397
- 백준 17471
- 해시구현
- 별 찍기 10
- Stack 이란
- 백준 1158
- C/C++ 구현
- AVL 시간 복잡도
- 해시 구현
- 버킷 정렬
- 원판 돌리기
- c#
- heap
- 백준 1406
- ㅣ풀이
- 백준 17822
- 게리멘더링2
- 백준 5397
- 조세퍼스 순열
- 1764
- qorwns
- 백준
- 시간 복잡도
- dfs
- 구현
- 스택의 특징
- 풀이
Archives
- Today
- Total
홍시홍의 프로그래밍
[백준 1427] 소트인사이드 본문
https://www.acmicpc.net/problem/1427
요구사항
1. 주어진 수 정렬
풀이
1. str로 수가 주어진다
2. stoi로 int형으로 바꾼다
3. %연산을 이용해서 한자리씩 map에 저장후 퀵정렬 이용
#include <iostream>
#include <string.h>
#include <string>
using namespace std;
typedef long long ll;
int map[11];
void Quicksort(int l, int r, int arr[])
{
if (l >= r)
return;
int i = l;
int j = r;
int pivot = arr[(l + r) / 2];
while (i <= j)
{
while (pivot < arr[i])
i++;
while (pivot > arr[j])
j--;
if (i <= j)
{
int temp;
temp = arr[i];
arr[i] = arr[j];
arr[j] = temp;
i++;
j--;
}
}
if(i<r)
Quicksort(i, r, arr);
if (j > l)
Quicksort(l, j, arr);
}
int main()
{
ios_base::sync_with_stdio(false);
string str;
ll n;
cin >> str;
n = stoi(str);
for (int i = 0; i < str.size(); i++)
{
int nown = n % 10;
map[i] = nown;
n = n / 10;
}
Quicksort(0, str.size(), map);
for (int i = 0; i < str.size(); i++)
cout << map[i];
}
'알고리즘 문제풀이 > 백준' 카테고리의 다른 글
[백준 1717] 집합의 표현 (0) | 2020.01.02 |
---|---|
[백준 1021]회전하는 큐 (0) | 2019.12.19 |
[백준 10989] 수 정렬하기3 (0) | 2019.12.18 |
[백준 2750] 수 정렬하기 (0) | 2019.12.17 |
[백준 2798] 블랙잭 (0) | 2019.12.16 |
Comments