티스토리 뷰
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 | //#define _CRT_SECURE_NO_WARNINGS #include <iostream> #include <cstdio> #include <algorithm> using namespace std; class Client { private: int age, order; char name[101]; public: void setInfo(int age, char* name, int order) { int i; this->age = age; for (i = 0; name[i] != NULL; i++) this->name[i] = name[i]; this->name[i] = NULL; this->order = order; } bool operator<(Client client) { if (this->age < client.age) return true; else if (this->age == client.age) return this->order < client.order; else return false; } void printInfo() { printf("%d %s\n", age, name); } }; int main() { int input; cin >> input; Client* client = new Client[input]; for (int i = 0; i < input; i++) { int age; char name[101]; scanf("%d %s", &age, name); client[i].setInfo(age, name, i); } sort(client, &client[input]); for (int i = 0; i < input; i++) client[i].printInfo(); delete[] client; } | cs |
'algorithm'''problem solve' 카테고리의 다른 글
[백준]1003-피보나치 함수(Dynamic Programming) (0) | 2019.08.17 |
---|---|
[백준]2748-피보나치 수 2(설명X, Dynamic Programming) (0) | 2019.08.17 |
[백준]1181-단어 정렬(설명X) (0) | 2019.08.17 |
[백준]11650, 11651-좌표 정렬하기(연산자 오버로딩, operator overloading) (0) | 2019.08.17 |
[백준]1427-소트인사이드(설명X) (0) | 2019.08.17 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- PyPy3
- Dynamic Programming
- c++
- 1932
- 정렬
- 구현
- 카카오
- BFS
- 완전탐색
- c
- 오픈소스
- 한화큐셀
- DP
- 이분탐색
- LG
- 알고리즘
- 컨트리뷰톤
- webOS
- 피보나치
- 인공지능
- 코딩
- 프로그래머스
- 플로이드 와셜
- 백준
- 백트래킹
- 파이썬
- 동적 계획법
- 브루트포스
- BaekJoon
- DFS
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함