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
- 알고리즘
- 삼성 #코테 #2020상반기 #c++
- 백준
- 코딩테스트
- LIS #Algorithm #요소추적
- Union-find
- Algorithm
- 식단
- 서버개발캠프
- IBK기업은행 #기업은행 #디지털 #직무 #정리
- 보석쇼핑
- 중반부
- Smilegate
- c++
- 유니온파인드
- 투포인터
- 카카오인턴
- 1편
- 스마일게이트
- BaekJoon
- 소감
- 코테
- 카카오
- BFS
Archives
- Today
- Total
짱아의 개발 기록장
LeedCode : 17. Letter Combinations of a Phone Number 본문
Algorithm/LeetCode
LeedCode : 17. Letter Combinations of a Phone Number
jungahshin 2020. 12. 29. 14:27반응형
오랜만에 dfs문제를 풀고 싶어서 LeetCode에서 dfs태그로 들어갔다.
재밌는 문제가 많아보였지만 역시 첫 번째 문제부터 들어갔다.
간단하게 dfs 재귀 방식으로 풀 수 있었다.
[메인 로직]
vector에 2~9까지의 idx에 각각 해당되는 문자를 넣어주었고
dfs로 digits에 해당되는 문자를 하나씩 탐색했다.
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
|
class Solution {
public:
vector<string> ans;
vector<char> phone[11];
void dfs(string digits, int idx, string temp){
if(idx==digits.size()){
ans.push_back(temp);
return;
}
for(int i=0; i<phone[digits[idx]-'0'].size(); i++){
dfs(digits, idx+1, temp+phone[digits[idx]-'0'][i]);
}
}
vector<string> letterCombinations(string digits) {
if(digits==""){
return ans;
}
int idx = 0;
for(int i=2; i<=9; i++){
if(i==7 || i==9){ // 4개
for(int j=0; j<4; j++){
char c = idx+'a';
phone[i].push_back(c);
idx++;
}
}else{ // 3개
for(int j=0; j<3; j++){
char c = idx+'a';
phone[i].push_back(c);
idx++;
}
}
}
dfs(digits, 0, "");
return ans;
}
};
|
cs |
반응형
'Algorithm > LeetCode' 카테고리의 다른 글
LeetCode : 99. Recover Binary Search Tree (0) | 2020.12.30 |
---|---|
LeetCode : 98. Validate Binary Search Tree (0) | 2020.12.29 |
LeetCode : 11. Container With Most Water (0) | 2020.12.28 |
LeetCode : 9. Palindrome Number (0) | 2020.12.28 |
LeetCode : 7. Reverse Integer (0) | 2020.12.27 |
Comments