일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Airflow
- data_engineer
- airflow webserver
- dsf
- Pseudo Lab
- datacamp
- SQL
- leetcode
- Spark
- docker image
- Dynamic Programming
- hackerrank
- Data Engineering
- telegram
- 빅데이터를 지탱하는 기술
- airflow architecture
- 2023년 목표
- docker container
- terraform
- docker
- 알고리즘
- BOT
- delete join
- 프로그래머스
- 백준 온라인 저지
- Python
- 데이터 엔지니어
- 그리디
- 백준온라인저지
- MySQL
Archives
- Today
- Total
Lim Seunghyun Space
[Leetcode] Binary Search 본문
문제 출처
문제 해설
- 정수로 구성된 리스트(nums)에 정수(target)가 포함되어 있는지 확인하는 문제
- nums는 오름차순으로 정렬된 상태
- target이 포함되어 있으면 nums에서 target이 위치한 인덱스를 포함되어 있지 않으면 -1을 반환
- 탐색하는 데 걸리는 시간 복잡도는 O(logN)가 되어야 한다.
문제 풀이
# source: https://leetcode.com/problems/binary-search/?envType=study-plan&id=binary-search-i
class Solution:
def search(self, nums: list[int], target: int) -> int:
start = 0
end = len(nums)
if target > nums[-1] or target < nums[0]:
return -1
while start <= end:
mid = (end + start) // 2
if nums[mid] == target:
return mid
if nums[mid] > target:
end = mid - 1
elif nums[mid] < target:
start = mid + 1
return -1
- 리스트가 정렬되어 있고, 시간 복잡도가 O(logN)이 되어야 하므로 이진 탐색을 이용
Github
728x90
'Algorithm > 문제' 카테고리의 다른 글
[Leetcode] Search Insert Position (0) | 2022.11.24 |
---|---|
[Leetcode] Guess Number Higher or Lower (0) | 2022.11.24 |
[Leetcode] Reverse Integer (0) | 2022.11.21 |
[백준 온라인 저지] 균형잡힌 세상 (0) | 2022.11.19 |
[백준 온라인 저지] 벌집 (0) | 2022.11.13 |