C程式設計的抽象思維-演算法分析-大多數元素

來源:互聯網
上載者:User

標籤:演算法

【問題】

請編寫以下函數 int MajorityElement(int array[],int n);

該函數返回數組array中的多數元素。多數元素是指在占絕對多數(至少51%)的一個值。如果多數元素不存在,那麼返回常量NoMajorityElement,該函數必須滿足下面的條件:
 1. 必須以O(N)時間運行。
 2. 必須使用O(1)的附加空間。換句話說,可用個別的臨時變數,而不可以使用任何的臨時數組。並且不能使用遞迴解決,這是因為隨著遞迴層數加深,會需要空間來儲存棧幀。

 3. 不能改變數組中的任何元素的值。

【代碼】

#include <stdio.h>void MajorityElement(int array[], int n){int majority, i, count;majority = array[0];count = 1;for(i = 1; i < n; i++){if(majority != array[i]){if(count == 0){majority = array[i];count++;}else{count--;}}else{count++;}}if(count > 0)printf("MajorityElement: %d\n", majority);elseprintf("NoMajorityElement\n");}main(){int array[5] = {1, 2, 1, 2, 3};MajorityElement(array, 5);}


相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.