티스토리 뷰
프로그래머스 17684번 - [3차]압축
요구사항
1. 주어진 문자열을 LZW 압축한 후의 사전 색인 번호를 배열로 반환하라.
요구사항 분석 및 풀이과정
LZW 압축을 수행하는 작업 이외의 작업은 없으므로 LZW 압축의 수행과정은 본문의 사진을 참고하여주세요.
소스코드 작성
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
class Solution {
private static Map<String, Integer> defaultDictionary() {
Map<String, Integer> dictionary = new HashMap<>();
for (char c = 'A'; c <= 'Z'; c++) {
dictionary.put(String.valueOf(c), c - 'A' + 1);
}
return dictionary;
}
public int[] solution(String msg) {
Map<String, Integer> dictionary = defaultDictionary();
List<Integer> result = new ArrayList<>();
for (int start = 0; start < msg.length(); ) {
int end = start + 1;
while (end <= msg.length()) {
String newWord = msg.substring(start, end);
if (!dictionary.containsKey(newWord)) {
break;
}
end++;
}
String existsLongWord = msg.substring(start, end - 1);
result.add(dictionary.get(existsLongWord));
String notExistsLongWord = msg.substring(start, Math.min(msg.length(), end));
dictionary.put(notExistsLongWord, dictionary.size() + 1);
start += existsLongWord.length();
}
return result.stream().mapToInt(Integer::intValue).toArray();
}
}
결과
소스코드 깃허브 주소
'코딩테스트 > 알고리즘' 카테고리의 다른 글
[알고리즘]프로그래머스 43238번 - 입국심사 (0) | 2022.01.20 |
---|---|
[알고리즘]프로그래머스 92334번 - 신고 결과 받기 (0) | 2022.01.19 |
[알고리즘]프로그래머스 12900번 - 2 x n 타일링 (0) | 2022.01.19 |
[알고리즘]프로그래머스 12978번 - 배달 (0) | 2022.01.18 |
[알고리즘]프로그래머스 70129번 - 이진 변환 반복하기 (0) | 2022.01.18 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- TDD
- k8s
- 비트연산
- JPA
- 탐욕법
- kotlin
- 구현
- 프로그래머스
- 연결리스트
- BFS
- Uber
- 알고리즘
- Java
- 회고
- 정렬
- 해쉬
- 쓰레드
- sql
- 문자열
- set
- 스택
- 코드 스니펫
- 오늘의집
- 코딩인터뷰
- dp
- 스트림
- dsu
- 카카오
- 우선순위큐
- 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 |
글 보관함