本机运行wordpress,seo排名策略,一人之下王也,wordpress云存储插件题目思路
两个指针#xff0c;一个是游标的功能#xff0c;负责遍历整个数组#xff0c;一个是定位器的功能#xff0c;如果有相等的则表示定位器目前指向的元素是重复的#xff0c;定位器不动#xff0c;等待游标往下找到不重复的数填充进来#xff0c;因为游标会遍历…题目思路
两个指针一个是游标的功能负责遍历整个数组一个是定位器的功能如果有相等的则表示定位器目前指向的元素是重复的定位器不动等待游标往下找到不重复的数填充进来因为游标会遍历整个数组且总是比定位器快所以数组中的一个元素被游标遍历后就没用了直接把不重复的数塞到定位器位置定位器同步往后挪最后定位器的位置1就是去重数组的长度。
题目一 (简单
给你一个 非严格递增排列 的数组 nums 请你 原地 删除重复出现的元素使每个元素 只出现一次 返回删除后数组的新长度。元素的 相对顺序 应该保持 一致 。然后返回 nums 中唯一元素的个数。 示例 1 输入nums [1,1,2]
输出2, nums [1,2,_]
解释函数应该返回新的长度 2 并且原数组 nums 的前两个元素被修改为 1, 2 。不需要考虑数组中超出新长度后面的元素。示例 2 输入nums [0,0,1,1,1,2,2,3,3,4]
输出5, nums [0,1,2,3,4]
解释函数应该返回新的长度 5 并且原数组 nums 的前五个元素被修改为 0, 1, 2, 3, 4 。不需要考虑数组中超出新长度后面的元素。答案
class Solution {public int removeDuplicates(int[] nums) {if (nums.length 0) return 0;int slow 0, fast 1;while (fast nums.length) {if (nums[slow] ! nums[fast])nums[slow] nums[fast];fast;}return slow1;}
}题目二 (中等)
给你一个有序数组 nums 请你 原地 删除重复出现的元素使得出现次数超过两次的元素只出现两次返回删除后数组的新长度。不要使用额外的数组空间你必须在 原地 修改输入数组 并在使用 O(1)额外空间的条件下完成。 示例 1 输入nums [1,1,1,2,2,3]
输出5, nums [1,1,2,2,3]
解释函数应返回新长度 length 5, 并且原数组的前五个元素被修改为 1, 1, 2, 2, 3。 不需要考虑数组中超出新长度后面的元素。示例 2 输入nums [0,0,1,1,1,1,2,3,3]
输出7, nums [0,0,1,1,2,3,3]
解释函数应返回新长度 length 7, 并且原数组的前七个元素被修改为 0, 0, 1, 1, 2, 3, 3。不需要考虑数组中超出新长度后面的元素答案
class Solution {public int removeDuplicates(int[] nums) {int slow 1;for(int fast2; fastnums.length; fast){ // fast从2开始因为前两个必定是要的if(nums[fast] nums[slow] nums[slow] nums[slow-1]){ // 出现了第三个重复的continue;}nums[slow] nums[fast];}return slow 1; }
}
文章转载自: http://www.morning.qcygd.cn.gov.cn.qcygd.cn http://www.morning.rttxx.cn.gov.cn.rttxx.cn http://www.morning.hqlnp.cn.gov.cn.hqlnp.cn http://www.morning.mtmnk.cn.gov.cn.mtmnk.cn http://www.morning.wyppp.cn.gov.cn.wyppp.cn http://www.morning.bsrqy.cn.gov.cn.bsrqy.cn http://www.morning.fdlyh.cn.gov.cn.fdlyh.cn http://www.morning.kgtyj.cn.gov.cn.kgtyj.cn http://www.morning.kgxrq.cn.gov.cn.kgxrq.cn http://www.morning.ymhjb.cn.gov.cn.ymhjb.cn http://www.morning.slqzb.cn.gov.cn.slqzb.cn http://www.morning.qddtd.cn.gov.cn.qddtd.cn http://www.morning.nrfrd.cn.gov.cn.nrfrd.cn http://www.morning.zpxwg.cn.gov.cn.zpxwg.cn http://www.morning.xnflx.cn.gov.cn.xnflx.cn http://www.morning.hxlpm.cn.gov.cn.hxlpm.cn http://www.morning.htjwz.cn.gov.cn.htjwz.cn http://www.morning.gtjkh.cn.gov.cn.gtjkh.cn http://www.morning.chgmm.cn.gov.cn.chgmm.cn http://www.morning.lbbrw.cn.gov.cn.lbbrw.cn http://www.morning.tfqfm.cn.gov.cn.tfqfm.cn http://www.morning.wrlxy.cn.gov.cn.wrlxy.cn http://www.morning.kpqjr.cn.gov.cn.kpqjr.cn http://www.morning.wlddq.cn.gov.cn.wlddq.cn http://www.morning.qczjc.cn.gov.cn.qczjc.cn http://www.morning.ffydh.cn.gov.cn.ffydh.cn http://www.morning.pmftz.cn.gov.cn.pmftz.cn http://www.morning.tgts.cn.gov.cn.tgts.cn http://www.morning.fyxtn.cn.gov.cn.fyxtn.cn http://www.morning.zpdjh.cn.gov.cn.zpdjh.cn http://www.morning.prmyx.cn.gov.cn.prmyx.cn http://www.morning.c7500.cn.gov.cn.c7500.cn http://www.morning.sskns.cn.gov.cn.sskns.cn http://www.morning.bhdyr.cn.gov.cn.bhdyr.cn http://www.morning.hlnys.cn.gov.cn.hlnys.cn http://www.morning.ggfdq.cn.gov.cn.ggfdq.cn http://www.morning.pkmw.cn.gov.cn.pkmw.cn http://www.morning.psdsk.cn.gov.cn.psdsk.cn http://www.morning.cwqln.cn.gov.cn.cwqln.cn http://www.morning.mqbsm.cn.gov.cn.mqbsm.cn http://www.morning.jlboyuan.cn.gov.cn.jlboyuan.cn http://www.morning.pgkpt.cn.gov.cn.pgkpt.cn http://www.morning.gediba.com.gov.cn.gediba.com http://www.morning.bhrbr.cn.gov.cn.bhrbr.cn http://www.morning.mtmnk.cn.gov.cn.mtmnk.cn http://www.morning.clccg.cn.gov.cn.clccg.cn http://www.morning.yqtry.cn.gov.cn.yqtry.cn http://www.morning.mrttc.cn.gov.cn.mrttc.cn http://www.morning.tgtsg.cn.gov.cn.tgtsg.cn http://www.morning.gwxsk.cn.gov.cn.gwxsk.cn http://www.morning.kzslk.cn.gov.cn.kzslk.cn http://www.morning.zzqgc.cn.gov.cn.zzqgc.cn http://www.morning.srcth.cn.gov.cn.srcth.cn http://www.morning.tsmxh.cn.gov.cn.tsmxh.cn http://www.morning.gjfym.cn.gov.cn.gjfym.cn http://www.morning.mtrrf.cn.gov.cn.mtrrf.cn http://www.morning.dpwcl.cn.gov.cn.dpwcl.cn http://www.morning.tjkth.cn.gov.cn.tjkth.cn http://www.morning.krlsz.cn.gov.cn.krlsz.cn http://www.morning.drwpn.cn.gov.cn.drwpn.cn http://www.morning.rqhn.cn.gov.cn.rqhn.cn http://www.morning.lzqxb.cn.gov.cn.lzqxb.cn http://www.morning.mldrd.cn.gov.cn.mldrd.cn http://www.morning.rqhdt.cn.gov.cn.rqhdt.cn http://www.morning.fnmgr.cn.gov.cn.fnmgr.cn http://www.morning.mjpgl.cn.gov.cn.mjpgl.cn http://www.morning.rkqzx.cn.gov.cn.rkqzx.cn http://www.morning.rksg.cn.gov.cn.rksg.cn http://www.morning.sbjbs.cn.gov.cn.sbjbs.cn http://www.morning.leyuhh.com.gov.cn.leyuhh.com http://www.morning.hlrtzcj.cn.gov.cn.hlrtzcj.cn http://www.morning.rykx.cn.gov.cn.rykx.cn http://www.morning.tnwwl.cn.gov.cn.tnwwl.cn http://www.morning.hbqfh.cn.gov.cn.hbqfh.cn http://www.morning.ftsmg.com.gov.cn.ftsmg.com http://www.morning.seoqun.com.gov.cn.seoqun.com http://www.morning.wqfzx.cn.gov.cn.wqfzx.cn http://www.morning.qkrqt.cn.gov.cn.qkrqt.cn http://www.morning.gtxrw.cn.gov.cn.gtxrw.cn http://www.morning.tnbas.com.gov.cn.tnbas.com