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 | 31 |
Tags
- 파이썬 강좌
- Adapter 패턴
- 스위프트
- 스칼라 강좌
- Hyperledger fabric gossip protocol
- Play2 로 웹 개발
- CORDA
- Akka
- 주키퍼
- play2 강좌
- 파이썬 데이터분석
- 파이썬 머신러닝
- 이더리움
- 하이브리드앱
- 파이썬 동시성
- Actor
- Golang
- 엔터프라이즈 블록체인
- 스칼라 동시성
- Play2
- 파이썬
- 그라파나
- 블록체인
- 스칼라
- play 강좌
- 하이퍼레저 패브릭
- 플레이프레임워크
- 안드로이드 웹뷰
- hyperledger fabric
- akka 강좌
Archives
- Today
- Total
목록Kth largest (1)
HAMA 블로그
Finding Kth largest element in Array
public class KthLargest { public static void main(String[] args) { int[] x = new int[] { 3, 6, 92, 34, 1, 35, 62, 13, 12, 24, 53 }; System.out.println(getKthLargest(x, 3)); } private static int getKthLargest(int[] x, int k) { int low = 0; int high = x.length - 1; while (true) { int pivot = (low + high) / 2; int newPiv = partition(x, low, high, pivot); if (newPiv == k) { return x[newPiv]; } else ..
알고리즘,자료구조
2015. 5. 12. 16:41