티스토리 뷰
algorithm'''problem solve
[백준]11650, 11651-좌표 정렬하기(연산자 오버로딩, operator overloading)
JunHwa Park 2019. 8. 17. 17:03
사실 설명할 거리도 없는 문제이긴 한데..
그리고 이 문제는 정렬 자체가 목적인 문제가 맞긴 하지만, 예외적으로 std::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
|
//#define _CRT_SECURE_NO_WARNINGS
#include <iostream>
#include <cstdio>
#include <algorithm>
using namespace std;
class Position {
private:
int xpos, ypos;
public:
Position() {
this->xpos = 0;
this->ypos = 0;
}
void setPosition(int xpos, int ypos) {
this->xpos = xpos;
this->ypos = ypos;
}
bool operator<(Position position) {
if (this->xpos < position.xpos)
return true;
else if (this->xpos == position.xpos && this->ypos < position.ypos)
return true;
else
return false;
}
void printPos() {
printf("%d %d\n", this->xpos, this->ypos);
}
};
int main() {
int input;
scanf("%d", &input);
Position* position = new Position[input];
for (int i = 0; i < input; i++) {
int x, y;
scanf("%d %d", &x, &y);
position[i].setPosition(x, y);
}
sort(position, &position[input]);
for (int i = 0; i < input; i++)
position[i].printPos();
}
|
cs |
좌표를 저장할 클래스를 만들었다.
클래스 내부에서 연산자를 오버로딩할 수 있는데, 이렇게 하면 기본 자료형 뿐만 아니라 사용자 정의 클래스에 대해서도 std::sort()함수를 사용할 수 있다.
11651 좌표 정렬하기 2는 위 코드에서 연산자 오버로딩한 부분의 xpos와 ypos를 서로 바꿔주면 된다.
'algorithm'''problem solve' 카테고리의 다른 글
[백준]10814-나이순 정렬(설명X) (0) | 2019.08.17 |
---|---|
[백준]1181-단어 정렬(설명X) (0) | 2019.08.17 |
[백준]1427-소트인사이드(설명X) (0) | 2019.08.17 |
[백준]2108-통계학 (설명X) (0) | 2019.08.17 |
[백준]10989-수 정렬하기 3(설명X) (0) | 2019.08.16 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 파이썬
- 오픈소스
- DFS
- 인공지능
- c++
- 컨트리뷰톤
- 코딩
- 1932
- Dynamic Programming
- 구현
- 동적 계획법
- BaekJoon
- 이분탐색
- PyPy3
- 알고리즘
- 백준
- BFS
- DP
- 피보나치
- 브루트포스
- 플로이드 와셜
- 완전탐색
- 백트래킹
- c
- 한화큐셀
- 카카오
- 프로그래머스
- LG
- 정렬
- webOS
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함