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
- BFS
- 코테
- Smilegate
- 투포인터
- 소감
- 서버개발캠프
- 코딩테스트
- Union-find
- 알고리즘
- 백준
- c++
- 식단
- IBK기업은행 #기업은행 #디지털 #직무 #정리
- 스마일게이트
- 중반부
- 카카오인턴
- 삼성 #코테 #2020상반기 #c++
- BaekJoon
- LIS #Algorithm #요소추적
- 1편
- 카카오
- 유니온파인드
- 보석쇼핑
- Algorithm
Archives
- Today
- Total
짱아의 개발 기록장
프로그래머스. 파일명 정렬(c++) / String 본문
반응형
문자열 처리의 대표적인 문제 유형이다.
문자열 처리하고 정렬을 해주면 바로 풀린다. 중간에 예외처리만 잘 해준다면 어렵지 않다.
딱히 설명은 필요없이 코드를 참고하면 충분히 이해가능할 것이다.
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
|
#include <string>
#include <vector>
#include <map>
#include <iostream>
#include <algorithm>
using namespace std;
vector<string> solution(vector<string> files) {
vector<string> answer;
vector<pair<pair<string, int>, int>> tmp;
map<int, string> m;
for(int i=0; i<files.size(); i++){
m[i] = files[i];
string head = "";
string number = "";
bool isNum = false;
int cnt = 0;
for(int j=0; j<files[i].size(); j++){
char c = files[i][j];
if(('a'<=c && c<='z') || ('A'<=c && c<='Z') || c == ' ' || c=='-' || c=='.'){
if(isNum) break;
head += tolower(c);
}else{
cnt++;
isNum = true;
if(cnt>5) break;
number += c;
}
}
tmp.push_back(make_pair(make_pair(head, stoi(number)), i));
}
sort(tmp.begin(), tmp.end());
for(int i=0; i<tmp.size(); i++){
answer.push_back(m[tmp[i].second]);
}
return answer;
}
|
cs |
반응형
'Algorithm > Programmers' 카테고리의 다른 글
프로그래머스. 타겟 넘버(c++) / DFS (0) | 2021.03.02 |
---|---|
프로그래머스. 체육복(c++) / Greedy (0) | 2021.03.02 |
프로그래머스. 추석 트래픽(c++) / String (0) | 2021.03.02 |
프로그래머스. 큰 수(c++) / Greedy (0) | 2021.03.01 |
프로그래머스. 단어변환(c++) / DFS+백트래킹 (0) | 2021.02.27 |
Comments