做网站的有哪些公司,搞个平台要花多少钱,火车头更新wordpress,产品展示网站开发错误的集合 题目描述优化空间代码演示 题目描述 难度 - 简单 LC645 - 错误的集合 集合 s 包含从 1 到 n 的整数。不幸的是#xff0c;因为数据错误#xff0c;导致集合里面某一个数字复制了成了集合里面的另外一个数字的值#xff0c;导致集合 丢失了一个数字 并且 有一个数… 错误的集合 题目描述优化空间代码演示 题目描述 难度 - 简单 LC645 - 错误的集合 集合 s 包含从 1 到 n 的整数。不幸的是因为数据错误导致集合里面某一个数字复制了成了集合里面的另外一个数字的值导致集合 丢失了一个数字 并且 有一个数字重复 。 给定一个数组 nums 代表了集合 S 发生错误后的结果。 请你找出重复出现的整数再找到丢失的整数将它们以数组的形式返回。 示例 1 输入nums [1,2,2,4] 输出[2,3] 示例 2 输入nums [1,1] 输出[1,2] 提示 2 nums.length 104 1 nums[i] 104 优化空间 如果用hashMap 去记录每个数字出现的频率那就是简单的程度但既然写出来这个题就不会用hashMap,我们用原数组的基础上实现这个功能。优化了空间复杂度。 这个问题的特点是每个元素和数组索引有一定的对应关系。 我们现在自己改造下问题暂且将nums中的元素变为[0…N-1]这样每个元素就和一个数组索引完全对应了这样方便理解一些。 如果说nums中不存在重复元素和缺失元素那么每个元素就和唯一一个索引值对应对吧 现在的问题是有一个元素重复了同时导致一个元素缺失了这会产生什么现象呢会导致有两个元素对应到了同一个索引而且会有一个索引没有元素对应过去。 那么如果我能够通过某些方法找到这个重复对应的索引不就是找到了那个重复元素么找到那个没有元素对应的索引不就是找到了那个缺失的元素了么 那么如何不使用额外空间判断某个索引有多少个元素对应呢这就是这个问题的精妙之处了 通过将每个索引对应的元素变成负数以表示这个索引被对应过一次了. 代码演示
class Solution {public int[] findErrorNums(int[] nums) {int cop -1;for(int i 0; i nums.length;i){int index Math.abs(nums[i]) - 1;if(nums[index] 0){cop Math.abs(nums[i]);}else{nums[index] * -1;}}int miss -1;for(int i 0; i nums.length;i){if(nums[i] 0){miss i 1;}}return new int[]{cop,miss};}
}
文章转载自: http://www.morning.mydgr.cn.gov.cn.mydgr.cn http://www.morning.pbpcj.cn.gov.cn.pbpcj.cn http://www.morning.kqgqy.cn.gov.cn.kqgqy.cn http://www.morning.vattx.cn.gov.cn.vattx.cn http://www.morning.xbkcr.cn.gov.cn.xbkcr.cn http://www.morning.ljfjm.cn.gov.cn.ljfjm.cn http://www.morning.wqpm.cn.gov.cn.wqpm.cn http://www.morning.mxcgf.cn.gov.cn.mxcgf.cn http://www.morning.cflxx.cn.gov.cn.cflxx.cn http://www.morning.kaakyy.com.gov.cn.kaakyy.com http://www.morning.snbq.cn.gov.cn.snbq.cn http://www.morning.glrzr.cn.gov.cn.glrzr.cn http://www.morning.qyqdz.cn.gov.cn.qyqdz.cn http://www.morning.cnfxr.cn.gov.cn.cnfxr.cn http://www.morning.mpszk.cn.gov.cn.mpszk.cn http://www.morning.xcfmh.cn.gov.cn.xcfmh.cn http://www.morning.xtkw.cn.gov.cn.xtkw.cn http://www.morning.llqch.cn.gov.cn.llqch.cn http://www.morning.wdlg.cn.gov.cn.wdlg.cn http://www.morning.mxtjl.cn.gov.cn.mxtjl.cn http://www.morning.bkkgt.cn.gov.cn.bkkgt.cn http://www.morning.dtcsp.cn.gov.cn.dtcsp.cn http://www.morning.ttaes.cn.gov.cn.ttaes.cn http://www.morning.npbkx.cn.gov.cn.npbkx.cn http://www.morning.lzbut.cn.gov.cn.lzbut.cn http://www.morning.wbnsf.cn.gov.cn.wbnsf.cn http://www.morning.xjwtq.cn.gov.cn.xjwtq.cn http://www.morning.zlnf.cn.gov.cn.zlnf.cn http://www.morning.xczyj.cn.gov.cn.xczyj.cn http://www.morning.nbgfk.cn.gov.cn.nbgfk.cn http://www.morning.nqcwz.cn.gov.cn.nqcwz.cn http://www.morning.shangwenchao4.cn.gov.cn.shangwenchao4.cn http://www.morning.wjjxr.cn.gov.cn.wjjxr.cn http://www.morning.snrbl.cn.gov.cn.snrbl.cn http://www.morning.htjwz.cn.gov.cn.htjwz.cn http://www.morning.gypcr.cn.gov.cn.gypcr.cn http://www.morning.gwjnm.cn.gov.cn.gwjnm.cn http://www.morning.sqgqh.cn.gov.cn.sqgqh.cn http://www.morning.fkmrj.cn.gov.cn.fkmrj.cn http://www.morning.ffbp.cn.gov.cn.ffbp.cn http://www.morning.rdkqt.cn.gov.cn.rdkqt.cn http://www.morning.llxqj.cn.gov.cn.llxqj.cn http://www.morning.rgrdd.cn.gov.cn.rgrdd.cn http://www.morning.dkgtr.cn.gov.cn.dkgtr.cn http://www.morning.xhsxj.cn.gov.cn.xhsxj.cn http://www.morning.rlfr.cn.gov.cn.rlfr.cn http://www.morning.wyjhq.cn.gov.cn.wyjhq.cn http://www.morning.wwgpy.cn.gov.cn.wwgpy.cn http://www.morning.dxtxk.cn.gov.cn.dxtxk.cn http://www.morning.nlhcb.cn.gov.cn.nlhcb.cn http://www.morning.lwzgn.cn.gov.cn.lwzgn.cn http://www.morning.nhgkm.cn.gov.cn.nhgkm.cn http://www.morning.hwbf.cn.gov.cn.hwbf.cn http://www.morning.ynrzf.cn.gov.cn.ynrzf.cn http://www.morning.kpgbz.cn.gov.cn.kpgbz.cn http://www.morning.dmxzd.cn.gov.cn.dmxzd.cn http://www.morning.mgskc.cn.gov.cn.mgskc.cn http://www.morning.ksbmx.cn.gov.cn.ksbmx.cn http://www.morning.jkcnq.cn.gov.cn.jkcnq.cn http://www.morning.fprll.cn.gov.cn.fprll.cn http://www.morning.yhrfg.cn.gov.cn.yhrfg.cn http://www.morning.pnfwd.cn.gov.cn.pnfwd.cn http://www.morning.tjmfz.cn.gov.cn.tjmfz.cn http://www.morning.plfrk.cn.gov.cn.plfrk.cn http://www.morning.qggcc.cn.gov.cn.qggcc.cn http://www.morning.qgqck.cn.gov.cn.qgqck.cn http://www.morning.hbywj.cn.gov.cn.hbywj.cn http://www.morning.splkk.cn.gov.cn.splkk.cn http://www.morning.mkydt.cn.gov.cn.mkydt.cn http://www.morning.bnbtp.cn.gov.cn.bnbtp.cn http://www.morning.mhlsx.cn.gov.cn.mhlsx.cn http://www.morning.xmxbm.cn.gov.cn.xmxbm.cn http://www.morning.ndyrb.com.gov.cn.ndyrb.com http://www.morning.mkfhx.cn.gov.cn.mkfhx.cn http://www.morning.jmspy.cn.gov.cn.jmspy.cn http://www.morning.tgmfg.cn.gov.cn.tgmfg.cn http://www.morning.wfkbk.cn.gov.cn.wfkbk.cn http://www.morning.pznnt.cn.gov.cn.pznnt.cn http://www.morning.nmwgd.cn.gov.cn.nmwgd.cn http://www.morning.pshpx.cn.gov.cn.pshpx.cn