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
- 백준
- JPA
- VPC
- 인천여행
- 자료구조
- Spring Boot
- Apache Kafka
- Spring Data JPA
- 카프카
- 쿠버네티스
- 프로그래밍문제
- Docker
- springboot
- DFS
- 스프링부트
- 클라우드 컴퓨팅
- 클라우드
- Spring
- 월미도
- aws
- Kafka
- 백트래킹
- 오일러프로젝트
- Elasticsearch
- 알고리즘
- 로드밸런서
- 코드업
- gcp
- 스프링
- 스프링 부트
Archives
- Today
- Total
목록binarySearch (1)
GW LABS
[코드업 3002] 기억력 테스트 3
해당 문제는 이진 탐색을 연습할 수 있는 문제였다. 재귀함수를 이용해서 이진 탐색을 구현했지만 한 번에 구현하진 못했다. 탐색 범위를 잘 지정해주는 것이 이진 탐색 구현의 핵심인 것 같다. #include using namespace std; int container[1000000]; int question[100000]; int binarySearch(int startIdx, int endIdx, int target) { if (startIdx > endIdx) return -1; int middle = (startIdx + endIdx) / 2; if (target < container[middle]) { return binarySearch(startIdx, middle - 1, target); } ..
Algorithm & DataStructure
2020. 9. 1. 11:02