LeetCode 17번: Letter Combinations of a Phone Number
2067 단어 알고리즘과 데이터 구조
class Solution {
public List letterCombinations(String digits) {
String[] table = new String[]{"","","abc","def","ghi","jkl","mno","pqrs","tuv","wxyz"};
List list = new ArrayList();
letterCombinations(list,digits,"",0,table);
return list;
}
private void letterCombinations(List list,String digits,String current
,int index,String[] table){
if(index == digits.length()){
if(current.length() != 0){
list.add(current);
}
return;
}
String temp = table[digits.charAt(index)-'0'];
for(int i=0 ; i< temp.length(); i++){
String next = current + temp.charAt(i);
letterCombinations(list,digits,next,index+1,table);
}
}
}
비슷한 질문, LeetCode 93번, 131번
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Python3를 사용하여 빠른 배열 정렬2020년 새해 복 많이 받으세요.저는 ryuichi69라고 합니다.오늘도 알고리즘 연습의 성과, 연습을 설명하는 동시에 이 글을 썼다.솔직히 이해하기 쉽게 쓰느라 힘들었는데 설명하기 어려운 부분, 요건 누락 등이 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.