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 |
Tags
- 나무자르기#BOJ#이분탐색#Python
- NumberofDiscIntersections#Codility#Sort#Python
- 병든 나이트#BOJ#탐욕법#Python
- API#lazy#
- 리모컨#완전탐색#BOJ#Python
- django#slicing
- filter#isalnum#lower
- 공유기 설치#BOJ#이분탐색#Python
- Brackets#Stacks and Queues#Codility#Python
- 쿼드트리#BOJ#분할정복#Python
- Triangle#Sorting#Codility#Python
- 랜선자르기#이분탐색#BOJ#Python
- 터틀비치#리콘#xbox#controller
- Swift#Tuples#Range
- N으로 표현#DP#Programmers#Python
- 배열합치기#분할정복#BOJ#Python
- django
- 파이썬알고리즘인터뷰#4장
- 반복수열#백준알고리즘#Python
- PassingCars#Codility#Python
- 토마토#백준알고리즘#Python
- 미로 탐색#백준알고리즘#Python
- 종이자르기#분할정복#BOJ#Python
- 순열사이클#BOJ#Python
- Distinct#Codility#Python
- 섬의개수#백준알고리즘#Python
- 암호코드#dp#BOJ#Python
- 백준 알고리즘#BackTracking
- 날짜 계산#BOJ#완전탐색#Python
- 텀 프로젝트#백준알고리즘#Python
Archives
- Today
- Total
B_log
완전검색(Exhaustive Search), Brute Force 본문
👨💻 특징
- 모든 경우의 수를 나열해 보고 확인하는 기법
- Brute-Force 또는 Generate and Test 라고도 불린다.
- 속도는 느리지만 높은 확률로 해답을 찾을 수 있다.
- permutations(순열), combinations(조합)과 함께 사용하기 좋다.
🚦 필요한 경우
- 경우의 수가 작을 때
💾 예시
-
- 출처 : https://swexpertacademy.com/
'알고리즘 학습' 카테고리의 다른 글
| 검색(Searching) (0) | 2020.05.11 |
|---|---|
| 2차원 리스트 (0) | 2020.05.11 |
| 정렬(Sort) (0) | 2020.05.11 |
| 리스트(List) (0) | 2020.05.11 |