일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 릿코드풀이
- 릿코드
- python 알고리즘
- 릿코드 풀기
- 파이썬 릿코드
- 상가수익률계산기
- binary search
- 파이썬 알고리즘 풀기
- python zip_longest
- python 릿코드
- 알고리즘풀이
- python sorted
- 릿코드풀기
- python xor
- 잇츠디모
- 파이썬릿코드풀기
- leetcode풀기
- leetcode풀이
- 파이썬 알고리즘
- 파이썬 프로그래머스
- 코틀린기초
- 파이썬알고리즘
- 알고리즘풀기
- python Leetcode
- python priority queue
- LeetCode
- 파이썬알고리즘풀기
- 릿코드 파이썬
- leetcode 풀기
- 파이썬릿코드
- Today
- Total
목록binary search (4)
소프트웨어에 대한 모든 것
897. Increasing Order Search Tree https://leetcode.com/problems/increasing-order-search-tree/ Increasing Order Search Tree - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 문제) 솔루션1) - inorder traversal, insert 3 steps로 풀이를 접근 하였습니다. 1) 기존 노드르 inorder traversal 수행해서 정렬된 numbers를 리스..
1351. Count Negative Numbers in a Sorted Matrix https://leetcode.com/problems/count-negative-numbers-in-a-sorted-matrix/ Count Negative Numbers in a Sorted Matrix - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 문제) 솔루션1) - brute force 이중 for 문을 통해서 0보다 작은 number를 셉니다. 시간 복잡도 : O(..
704. Binary Search https://leetcode.com/problems/binary-search/ Binary Search - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 문제) 솔루션1) 이진 탐색 (binary search) class Solution: def search(self, nums: List[int], target: int) -> int: left = 0 right = len(nums) while left < right: mid ..
바이너리 서치에 대해서 알아간다. 탐색 범위를 절반씩 줄여가면서 찾아간다. 바이너리 서치의 대상은 정렬되어 있어야 한다. 시간 복잡도 : O(logn) 코드를 보면 확실하다 바이너리 서치 구현 def binary_search(nums, target): left = 0 right = len(nums) while left < right: pivot = (left + right) // 2 if nums[pivot] == target: return pivot elif nums[pivot] < target: left = pivot + 1 else: right = pivot return -1 # 이진 탐색 대상은 정렬되어 있어야 함 nums = [1, 3, 5, 7, 9, 10, 15, 20, 25] target ..