大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
169. 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.
思路1:
使用map来处理。
class Solution { public: int majorityElement(vector& nums) { map record; for (int i = 0; i < nums.size(); i++) { if (record.find(nums[i]) == record.end()) { record.insert(pair (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:
采用双循环
int majorityElement(vector& 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
另外有需要云服务器可以了解下创新互联scvps.cn,海内外云服务器15元起步,三天无理由+7*72小时售后在线,公司持有idc许可证,提供“云服务器、裸金属服务器、高防服务器、香港服务器、美国服务器、虚拟主机、免备案服务器”等云主机租用服务以及企业上云的综合解决方案,具有“安全稳定、简单易用、服务可用性高、性价比高”等特点与优势,专为企业上云打造定制,能够满足用户丰富、多元化的应用场景需求。