Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 자료구조
- 스프링 부트
- 쿠버네티스
- 알고리즘
- Spring
- 인천여행
- 클라우드 컴퓨팅
- 월미도
- 로드밸런서
- Elasticsearch
- 스프링
- springboot
- Spring Data JPA
- VPC
- gcp
- 백준
- DFS
- 오일러프로젝트
- 스프링부트
- aws
- Apache Kafka
- 클라우드
- JPA
- 백트래킹
- Docker
- Spring Boot
- Kafka
- 코드업
- 카프카
- 프로그래밍문제
Archives
- Today
- Total
GW LABS
[LeetCode] Decode String 본문
LeetCode에 "Top 100 liked" 리스트에 수록되어 있는 문제이다. DFS 문제로 분류되는데 국내 기준으로는 구현 문제로 분류될 것 같다. 문제 풀이에 엄청난 시간이 들었는데, 그 만큼 구현 문제에 대한 연습과 대비가 안되어 있다는 걸 느꼈다.
알고리즘을 설계하기 전에 재귀적으로 접근하면 풀이가 가능할 것으로 예상하고, 재귀적으로 설계를 해나가면서 어려웠던 점은 문자열의 인덱스를 적절히 잘라주는 계산과 예외에 대한 처리였다. 다음에 이 문제를 복습할 때에는 재귀적 접근 뿐만 아니라 스택을 사용해서 접근하는 방법도 고려해봐야겠다.
class Solution:
def decodeString(self, s: str) -> str:
return self.decode(s)
def decode(self, s):
result = ""
braket_counter = 0
braket_trigger = False
idx_braket_start = -1
idx_braket_end = -1
for idx in range(len(s)):
# 괄호 위치 저장
if s[idx] == "[":
braket_counter += 1
if idx_braket_start == -1:
idx_braket_start = idx
elif s[idx] == "]":
braket_counter -= 1
idx_braket_end = idx
# 괄호 끝에 도달했다면
if braket_counter == 0 and idx_braket_start != -1 and idx_braket_end != -1:
braket_trigger = True
# 숫자위치 저장
idx_digit = idx_braket_start - 1
while s[idx_digit].isdigit():
idx_digit -= 1
idx_digit += 1
head = s[:idx_digit]
tail = s[idx_braket_end + 1:]
digit = s[idx_digit:idx_braket_start]
# 재귀적으로 decode 수행
decoded_substr = self.decode(s[idx_braket_start + 1:idx_braket_end]) * int(digit)
# 처리도중 [ 가 들어있다면 []에 감싸져 있지 않은 문자열을 빼낸다.
if "[" in head:
idx_head = 0
for idx in range(len(head)):
if head[idx] == "]":
idx_head = idx
head = head[idx_head+1:]
if "]" in tail:
tail = ""
# 결과값 도출
result += head + decoded_substr + tail
idx_braket_start = -1
idx_braket_end = -1
if braket_trigger:
return result
else:
return s
구현문제는 medium 수준의 난이도라면 print로 결과값을 찍어가면서 억지로라도 문제를 풀이할 수 있을 거 같다. 두려워 하지 말고 차근차근히 중간결과값을 따라가면서 오류를 따라가자!
'Algorithm & DataStructure' 카테고리의 다른 글
[LeetCode] Course Schedule (0) | 2020.09.18 |
---|---|
C++로 구현하는 자료구조 (3) - HashMap (0) | 2020.09.14 |
[LeetCode] Palindromic Substrings (0) | 2020.09.08 |
C++로 구현하는 자료구조 (2) - LinkedList (0) | 2020.09.05 |
C++로 구현하는 자료구조 (1) - ArrayList (0) | 2020.09.03 |
Comments