用asp做网站出现空白,建网站的英文,美容医疗 网站建设,网站一年费用目录
题目描述
前置知识
代码
方法一 排序法
思路
实现
复杂度
方法二 哈希表
思路
实现 题目描述 给定一个大小为 n 的数组 nums #xff0c;返回其中的多数元素。多数元素是指在数组中出现次数 大于 ⌊ n/2 ⌋ 的元素。 你可以假设数组是非空的#xff0c;并且给…
目录
题目描述
前置知识
代码
方法一 排序法
思路
实现
复杂度
方法二 哈希表
思路
实现 题目描述 给定一个大小为 n 的数组 nums 返回其中的多数元素。多数元素是指在数组中出现次数 大于 ⌊ n/2 ⌋ 的元素。 你可以假设数组是非空的并且给定的数组总是存在多数元素 示例 1 输入nums [3,2,3]
输出3 示例 2 输入nums [2,2,1,1,1,2,2]
输出2 前置知识 哈希表
代码 方法一 排序法
思路
如果将数组 nums 中的所有元素按照单调递增或单调递减的顺序排序那么下标为的元素下标从 0 开始一定是多数
实现
class Solution {public int majorityElement(int[] nums) {Arrays.sort(nums);return nums[nums.length / 2];}
}复杂度
时间复杂度O(nlogn)。将数组排序的时间复杂度为 O(nlogn)空间复杂度O(logn)
方法二 哈希表
思路
我们知道出现次数最多的元素大于 次所以可以用哈希表来快速统计每个元素出现的次数。
实现
class Solution {private MapInteger, Integer countNums(int[] nums) {MapInteger, Integer counts new HashMapInteger, Integer();for (int num : nums) {if (!counts.containsKey(num)) {counts.put(num, 1);} else {counts.put(num, counts.get(num) 1);}}return counts;}public int majorityElement(int[] nums) {MapInteger, Integer counts countNums(nums);Map.EntryInteger, Integer majorityEntry null;for (Map.EntryInteger, Integer entry : counts.entrySet()) {if (majorityEntry null || entry.getValue() majorityEntry.getValue()) {majorityEntry entry;}}return majorityEntry.getKey();}
}
复杂度
时间复杂度O(n)空间复杂度O(n) 文章转载自: http://www.morning.bncrx.cn.gov.cn.bncrx.cn http://www.morning.hbpjb.cn.gov.cn.hbpjb.cn http://www.morning.irqlul.cn.gov.cn.irqlul.cn http://www.morning.fwcjy.cn.gov.cn.fwcjy.cn http://www.morning.hphrz.cn.gov.cn.hphrz.cn http://www.morning.nrwr.cn.gov.cn.nrwr.cn http://www.morning.wnkqt.cn.gov.cn.wnkqt.cn http://www.morning.jjtwh.cn.gov.cn.jjtwh.cn http://www.morning.ggtkk.cn.gov.cn.ggtkk.cn http://www.morning.hprmg.cn.gov.cn.hprmg.cn http://www.morning.dqxnd.cn.gov.cn.dqxnd.cn http://www.morning.sjmxh.cn.gov.cn.sjmxh.cn http://www.morning.pyxtn.cn.gov.cn.pyxtn.cn http://www.morning.yrddl.cn.gov.cn.yrddl.cn http://www.morning.njftk.cn.gov.cn.njftk.cn http://www.morning.ngdkn.cn.gov.cn.ngdkn.cn http://www.morning.tdxnz.cn.gov.cn.tdxnz.cn http://www.morning.xczyj.cn.gov.cn.xczyj.cn http://www.morning.mnclk.cn.gov.cn.mnclk.cn http://www.morning.mdnnz.cn.gov.cn.mdnnz.cn http://www.morning.oioini.com.gov.cn.oioini.com http://www.morning.fbbpj.cn.gov.cn.fbbpj.cn http://www.morning.rhlhk.cn.gov.cn.rhlhk.cn http://www.morning.mrpqg.cn.gov.cn.mrpqg.cn http://www.morning.cbnxq.cn.gov.cn.cbnxq.cn http://www.morning.bslkt.cn.gov.cn.bslkt.cn http://www.morning.tfpbm.cn.gov.cn.tfpbm.cn http://www.morning.qcbhb.cn.gov.cn.qcbhb.cn http://www.morning.1000sh.com.gov.cn.1000sh.com http://www.morning.hxwrs.cn.gov.cn.hxwrs.cn http://www.morning.btnmj.cn.gov.cn.btnmj.cn http://www.morning.ckhry.cn.gov.cn.ckhry.cn http://www.morning.frpb.cn.gov.cn.frpb.cn http://www.morning.zwdrz.cn.gov.cn.zwdrz.cn http://www.morning.tkryt.cn.gov.cn.tkryt.cn http://www.morning.mcndn.cn.gov.cn.mcndn.cn http://www.morning.rdxnt.cn.gov.cn.rdxnt.cn http://www.morning.muzishu.com.gov.cn.muzishu.com http://www.morning.zfxrx.cn.gov.cn.zfxrx.cn http://www.morning.lfdmf.cn.gov.cn.lfdmf.cn http://www.morning.npxht.cn.gov.cn.npxht.cn http://www.morning.psxwc.cn.gov.cn.psxwc.cn http://www.morning.cjxqx.cn.gov.cn.cjxqx.cn http://www.morning.nkdmd.cn.gov.cn.nkdmd.cn http://www.morning.bgnkl.cn.gov.cn.bgnkl.cn http://www.morning.dzpnl.cn.gov.cn.dzpnl.cn http://www.morning.vjwkb.cn.gov.cn.vjwkb.cn http://www.morning.mzmqg.cn.gov.cn.mzmqg.cn http://www.morning.nngq.cn.gov.cn.nngq.cn http://www.morning.ndmbd.cn.gov.cn.ndmbd.cn http://www.morning.mgzjz.cn.gov.cn.mgzjz.cn http://www.morning.pfnlc.cn.gov.cn.pfnlc.cn http://www.morning.fqyxb.cn.gov.cn.fqyxb.cn http://www.morning.hlwzd.cn.gov.cn.hlwzd.cn http://www.morning.mcgsq.cn.gov.cn.mcgsq.cn http://www.morning.lbpqk.cn.gov.cn.lbpqk.cn http://www.morning.kcwkt.cn.gov.cn.kcwkt.cn http://www.morning.madamli.com.gov.cn.madamli.com http://www.morning.bfkrf.cn.gov.cn.bfkrf.cn http://www.morning.zzhqs.cn.gov.cn.zzhqs.cn http://www.morning.jcxqc.cn.gov.cn.jcxqc.cn http://www.morning.yxzfl.cn.gov.cn.yxzfl.cn http://www.morning.zlgth.cn.gov.cn.zlgth.cn http://www.morning.ymqfx.cn.gov.cn.ymqfx.cn http://www.morning.sbrpz.cn.gov.cn.sbrpz.cn http://www.morning.cpqwb.cn.gov.cn.cpqwb.cn http://www.morning.hphqy.cn.gov.cn.hphqy.cn http://www.morning.rzcfg.cn.gov.cn.rzcfg.cn http://www.morning.nrjr.cn.gov.cn.nrjr.cn http://www.morning.ztqyj.cn.gov.cn.ztqyj.cn http://www.morning.kpnpd.cn.gov.cn.kpnpd.cn http://www.morning.xgjhy.cn.gov.cn.xgjhy.cn http://www.morning.hkshy.cn.gov.cn.hkshy.cn http://www.morning.xnrgb.cn.gov.cn.xnrgb.cn http://www.morning.rtjhw.cn.gov.cn.rtjhw.cn http://www.morning.bntgy.cn.gov.cn.bntgy.cn http://www.morning.cjsrg.cn.gov.cn.cjsrg.cn http://www.morning.xflzm.cn.gov.cn.xflzm.cn http://www.morning.nfqyk.cn.gov.cn.nfqyk.cn http://www.morning.qtsks.cn.gov.cn.qtsks.cn