Kth Largest Element in an Array
Pretty simple Question!
Find the Kth largest element in an unsorted array. Note that it is the kth largest element in the sorted order, not the kth distinct element.
Example 1 : Input : [3,2,1,5,6,4] and k = 2 Output : 5
Example 2 : Input : [3,2,3,1,2,4,5,5,6] and k = 4 Output : 4
์๊ณ ๋ฆฌ์ฆ #1 K๋ฒ์งธ ํฐ ์์๋ ์ ๋ ฌ๋ ์ํ์ ๋ฐฐ์ด์์ [๋ฐฐ์ด์ ๊ธธ์ด-K] ๋ฐฉ์ ์๋ ์์๋ค! 1. ๋ฐฐ์ด ์ค๋ฆ์ฐจ์ ์ ๋ ฌ - Arrays.sort() ์ด์ฉ 2. K๋ฒ์งธ ํฐ ์์ ๋ฆฌํด - nums[nums.length-K]
์๊ณ ๋ฆฌ์ฆ #2 ์ฐ์ ์ ์ ํ(์ค๋ฆ์ฐจ์ ์ ๋ ฌ, ์ต์ํ)๋ฅผ ์ด์ฉํ์ฌ ํผ๋ค. 1. ์ค๋ฆ์ฐจ์์ ์ต์ํ ํ๋ฅผ ์์ฑํ๊ณ ๋ฐฐ์ด์ ๋ฐ์ดํฐ๋ฅผ ํ์ ๋ฃ๋๋ค. - .offer() 2. Kํฌ๊ธฐ ๋งํผ์ ํ๋ฅผ ์ ์งํ๋ค. - .poll() 3. ๋ง์ง๋ง์ ํ์ ํค๋๋ฅผ ๋ฆฌํดํ๋ค. - .peek()
Last updated