2020年4月14日 星期二

[LeetCode] 169. Majority Element 解題思路 (Easy)



這題要算出重複最多的數字。



LeetCode 題目連結

 

https://leetcode.com/problems/majority-element/

 

題目


Given an array of size n, find the majority element. The majority element is the element that appears more than ⌊ n/2 ⌋ times.
You may assume that the array is non-empty and the majority element always exist in the array.
Example 1:
Input: [3,2,3]
Output: 3
Example 2:
Input: [2,2,1,1,1,2,2]
Output: 2

Accept 作法

我弄得 flag 很多,可能有更好的做法,目前尚未去看別人的作法。


Runtime: 1225 ms
Memory: 42.2 MB

Java 程式碼

  1. class Solution {
  2. public int majorityElement(int[] nums) {
  3. Arrays.sort(nums);
  4. int currentNum = nums[0];
  5. int currentCount = 0;
  6. int lastCount = 0;
  7. int lastNum = nums[0];
  8. boolean isFirst = true;
  9. for(int num:nums){
  10. if(currentNum == num && !isFirst){
  11. currentCount++;
  12. }else{
  13. currentCount=0;
  14. }
  15. if(currentCount > lastCount){
  16. lastCount = currentCount;
  17. lastNum = num;
  18. }
  19. if(isFirst){
  20. isFirst = false;
  21. }
  22. currentNum = num;
  23. }
  24. return lastNum;
  25. }
  26. }
  27.  


 

更多 LeetCode 相關資源

 

複習程式面試書籍


除了 LeetCode 練習外,我也入手了這本,題庫來自真正的面試,並非摘自教科書。它們反映出頂尖公司真正會出的題目,你可以藉此做好充分準備
需要的話可以看看,寫得很仔細。





書名:提升程式設計師的面試力:189道面試題目與解答




相關 LeetCode文章一律會放在 程式解題 標籤分類,歡迎持續追蹤。


沒有留言:

張貼留言