stable sort : merge sort
unstable sort : quick, heap sort
코드 >>
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
#include <iostream>
#include <array>
#include <vector>
#include <algorithm>
// stable sort : merge
// unstable sort : quick, heap
struct Employee
{
int age;
char name;
};
bool operator< (const Employee& lhs, const Employee& rhs)
{
return lhs.age < rhs.age;
}
int main()
{
//stable sort -> merge
// unstable sort -> quick, heap
std::array<int, 7> nums = { 0,1,2,3,4,5,6 };
for (auto k : nums)
{
std::cout << k << std::endl;
}
std::vector<Employee> v{
{200,'A'},
{200,'B'},
{200,'C'},
{200,'D'},
{200,'E'}
};
for (int i = 9; i < 100; i++)
{
v.emplace_back(Employee{ i,'Z' });
}
std::sort(v.begin(), v.end());
for (const Employee& e : v)
{
std::cout << e.age << ", " << e.name << std::endl;
}
//std::stable_sort(v.begin(), v.end());
//for (const Employee& e : v)
//{
// std::cout << e.age << ", " << e.name << std::endl;
//}
// 둘 다 결과가 다르다.
return 0;
}
|
'C' 카테고리의 다른 글
c++ 코딩테스트 array에서 0을 뒤로 보내기(Move zeros) (0) | 2021.06.29 |
---|---|
c++ vector를 활용한 binary search (0) | 2021.06.29 |
c++ 클래스, fstream(파일인풋), stringstream(스트링인풋) (0) | 2021.06.29 |
c++ 다운캐스팅 시 static cast 절대 쓰지 말자, dynamic_cast (0) | 2021.06.29 |
c++ class에서 object slicing 문제 발생 (0) | 2021.06.29 |