반응형
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
- heapq
- SQLP
- 오라클튜닝
- RAC
- 친절한SQL튜닝
- 클린코드
- intellij
- 리트코드215
- database
- join
- db
- 클린 코드
- leetcode215
- clean code
- SQL튜닝의시작
- index fast full scan
- B*Tree인덱스구조
- 오라클
- B*Tree인덱스
- 파이썬
- 결합인덱스구조
- Oracle
- SQLD
- table full scan
- 데이터모델링
- 로버트C마틴
- 리눅스
- B*Tree
- 조인
- 알고리즘
Archives
- Today
- Total
목록leetcode (1)
개발노트
[알고리즘/파이썬] 리트코드 leetcode 215. 배열의 K 번째 큰 요소
문제 정렬되지 않은 배열에서 K번째 큰 요소를 추출하라. 풀이 1. heapq 모듈 - heappush, heappop 함수 이용 class Solution: def findKthLargest(self, nums: List[int], k: int) -> int: heap = list() for n in nums: ## - 부호 붙여서 의도적으로 max heap 으로 구성 heapq.heappush(heap,-n) for i in range(k-1): heapq.heappop(heap) ## 의도적으로 음수 만들어준것을 다시 원래 값으로 복원 return -heapq.heappop(heap) 풀이 2. heapq 모듈 - heapify 함수 이용 class Solution: def findKthLarges..
Algorithm
2024. 1. 24. 23:40