반응형
https://www.acmicpc.net/problem/10989
문제
N개의 수가 주어졌을 때, 이를 오름차순으로 정렬하는 프로그램을 작성하시오.
입력
첫째 줄에 수의 개수 N(1 ≤ N ≤ 10,000,000)이 주어진다. 둘째 줄부터 N개의 줄에는 숫자가 주어진다. 이 수는 10,000보다 작거나 같은 자연수이다.
출력
첫째 줄부터 N개의 줄에 오름차순으로 정렬한 결과를 한 줄에 하나씩 출력한다.
/*baekjoon 10989 수 정렬하기 3*/
#include <iostream>
#include <algorithm>
using namespace std;
#define MAX 10001
int N;
int NumData[MAX] = {0};
void InputData(){
int tmp=0;
//input data size
cin >> N;
//input data
for(int i = 0; i < N; i++){
scanf("%d", &tmp);
NumData[tmp]++;
}
}
void OutputData(){
for( int i=0; i<MAX; i++){
if(NumData[i]){
for(int count=0; count<NumData[i]; count++)
printf("%d\n", i);
}
}
}
int main()
{
InputData();
OutputData();
return 0;
}
/*baekjoon 10989 수 정렬하기 3*/
반응형
'Algorithm > sorting' 카테고리의 다른 글
[c++][algorithm][백준] 1427 소트인사이드 (0) | 2021.06.27 |
---|---|
[c++][algorithm][백준]1181 단어정렬 (0) | 2021.06.27 |
[c++]baekjoon 10814 나이순 정렬 (0) | 2021.05.15 |
[c++]baekjoon 2751 수 정렬하기2 (0) | 2021.05.04 |
[c++]baekjoon 2750 수 정렬하기 (0) | 2021.05.04 |