Trie 자료구조
백준 문제를 풀면서 알게된 Trie 자료구조에 대한 정리 많은 문자열중에서 같은 문자열을 찾을 때 최대길이가 m이라면 n번 시행할때 O(mn)으로 찾을 수 있고, 트라이를 만들 때도 O(mn)으로 만들 수 있게 한다. #include #include #include #include using namespace std; struct Trie { char c; bool end; Trie* next[10]; Trie() { end = false; memset(next, 0, sizeof(next)); } ~Trie() { for (int i = 0; i < 10; i++) { if (next[i]) delete next[i]; } } void insert(string s) { if (s.size() == 0)..
개발/알고리즘
2019. 7. 21. 15:47
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
TAG
- 카카오
- Reciprocal n-body Collision Avoidance
- RVO
- Obstacle Avoidance
- set value
- red underline
- 면접
- cockroach db
- shared_from_this
- 영상 픽셀화 하기
- 봄날에 스케치
- hole-punching
- ad skip
- 우리는 vr핏이라고 부릅니다
- vrpit
- mysql
- C++
- chrome-extension
- boost
- 클래스 맴버 변수 출력하기
- SuffixArray
- 에러 위치 찾기
- 코어 남기기
- Visual Studio
- Golang
- it's called a vrpit
- Quest2
- print shared_ptr class member variable
- vr핏
- 잘못된 빨간줄
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함