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
- Union-find
- 중반부
- 카카오인턴
- 알고리즘
- 백준
- Algorithm
- 1편
- 카카오
- BaekJoon
- Smilegate
- 코테
- 스마일게이트
- LIS #Algorithm #요소추적
- IBK기업은행 #기업은행 #디지털 #직무 #정리
- 유니온파인드
- 투포인터
- 소감
- 코딩테스트
- 서버개발캠프
- BFS
- c++
- 보석쇼핑
- 식단
- 삼성 #코테 #2020상반기 #c++
Archives
- Today
- Total
짱아의 개발 기록장
LeetCode : 14. Longest Common Prefix 본문
반응형
예전에 백준에서 비슷한 문제였던 전화번호 목록?을 풀었던 기억이 있어서 비교적 쉽게 접근할 수 있었다.
[메인 아이디어]
일단, 문자열 배열을 정렬하면 어떤식으로 정렬이 되는 지를 알아야 하는게 우선이다!
문자열 배열 ["flower", "flow", "flo", "fl", "snack", "sna", "s"]를 정렬하면,
["fl", "flo", "flow", "flower", "s", "sna", "snack"] 과 같이 정렬이 된다.
즉, 접두사가 일치하는 문자열 끼리 정렬이 되고 그 후에 알파벳 순서로 정렬된다.
위의 특성을 잘 활용하면 문제를 빠르게 풀 수 있다.
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
|
class Solution {
public:
string longestCommonPrefix(vector<string>& strs) {
string ans = "";
if(strs.size()==0){
return ans;
}
sort(strs.begin(), strs.end());
string s = strs[0];
string temp = "";
if(strs.size()==1){
return s;
}
for(int i=0; i<s.size(); i++){
temp += s[i];
for(int j=1; j<strs.size(); j++){
if(temp!=strs[j].substr(0, i+1)){
return ans;
}
}
ans = temp;
}
return ans;
}
};
|
cs |
반응형
'Algorithm > LeetCode' 카테고리의 다른 글
LeetCode : 15. 3Sum (0) | 2021.01.11 |
---|---|
LeetCode : 107. Binary Tree Level Order Traversal II (0) | 2021.01.08 |
LeetCode : 104. Maximum Depth of Binary Tree (0) | 2021.01.06 |
LeetCode : 53. Maximum Subarray (0) | 2021.01.04 |
LeedCode : 40. Combination Sum II (0) | 2021.01.03 |
Comments