169. Majority Element
站在用戶的角度思考問題,與客戶深入溝通,找到舞鋼網(wǎng)站設(shè)計與舞鋼網(wǎng)站推廣的解決方案,憑借多年的經(jīng)驗,讓設(shè)計與互聯(lián)網(wǎng)技術(shù)結(jié)合,創(chuàng)造個性化、用戶體驗好的作品,建站類型包括:成都網(wǎng)站制作、做網(wǎng)站、外貿(mào)營銷網(wǎng)站建設(shè)、企業(yè)官網(wǎng)、英文網(wǎng)站、手機端網(wǎng)站、網(wǎng)站推廣、申請域名、網(wǎng)絡(luò)空間、企業(yè)郵箱。業(yè)務(wù)覆蓋舞鋼地區(qū)。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.
思路1:
使用map來處理。
class Solution { public: int majorityElement(vector<int>& nums) { map<int, int> record; for (int i = 0; i < nums.size(); i++) { if (record.find(nums[i]) == record.end()) { record.insert(pair<int, int>(nums[i], 1)); if (record[nums[i]] > nums.size() / 2) { return nums[i]; } } else { record[nums[i]] += 1; if (record[nums[i]] > nums.size() / 2) { return nums[i]; } } } return 0; } };
思路2:
采用雙循環(huán)
int majorityElement(vector<int>& nums) { int hit = 0; int currentElem; for (int i = 0; i < nums.size(); i++) { currentElem = nums[i]; hit = 0; for (int j = 0; j < nums.size(); j++) { if (nums[j] == currentElem) { hit++; if (hit > nums.size() / 2) { return currentElem; } } } } return 0; }
2016-08-10 12:19:37
另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務(wù)器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國服務(wù)器、虛擬主機、免備案服務(wù)器”等云主機租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務(wù)可用性高、性價比高”等特點與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場景需求。
網(wǎng)站題目:leetCode169.MajorityElement數(shù)組-創(chuàng)新互聯(lián)
網(wǎng)頁路徑:http://aaarwkj.com/article46/dpjheg.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供ChatGPT、商城網(wǎng)站、手機網(wǎng)站建設(shè)、企業(yè)網(wǎng)站制作、網(wǎng)站導(dǎo)航、網(wǎng)站設(shè)計
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)