当前位置: 首页 > news >正文

网站开发最好百度推广

网站开发最好,百度推广,网页设计与网站建设书籍,珠海品牌网站制作服务这是关于一个普通双非本科大一学生的C的学习记录贴 在此前,我学了一点点C语言还有简单的数据结构,如果有小伙伴想和我一起学习的,可以私信我交流分享学习资料 那么开启正题 今天分享的是关于vector的题目 1.只出现一次的数字1 136. 只出…

这是关于一个普通双非本科大一学生的C++的学习记录贴

在此前,我学了一点点C语言还有简单的数据结构,如果有小伙伴想和我一起学习的,可以私信我交流分享学习资料

那么开启正题

今天分享的是关于vector的题目

1.只出现一次的数字1

136. 只出现一次的数字

给你一个 非空 整数数组 nums ,除了某个元素只出现一次以外,其余每个元素均出现两次。找出那个只出现了一次的元素。

你必须设计并实现线性时间复杂度的算法来解决此问题,且该算法只使用常量额外空间

这题可以用的方法很多,比如数组计数,排序等,但是符合题目要求的最简单的方法就是位操作,两个相同的数字异或结果为0,0和x异或结果是x,根据以上特性,我们遍历一遍数组全异或一遍,题目就迎刃而解了

class Solution {
public:int singleNumber(vector<int>& nums) {int i=0;int ret = 0;for(i=0;i<nums.size();i++){ret ^= nums[i];}return ret;}
};

这是ac代码

2.只出现一次的数字2

137. 只出现一次的数字 II

给你一个整数数组 nums ,除某个元素仅出现 一次 外,其余每个元素都恰出现 三次 。请你找出并返回那个只出现了一次的元素。

你必须设计并实现线性时间复杂度的算法且使用常数级空间来解决此问题

这题是上面题的升级版,同样的我们还是要在位上下功夫,但是按位异或肯定行不通了,我们得靠别的方法,比如计数,创建一个32大的数组,将数据遍历按位是否为1对数组进行++,最后数组内的数据都是3n和3n+1,这时让ret加上3n+1对应的位,就可以得到想要的答案了,当然这里的重复数字也可以是2,5,7...

class Solution {
public:int singleNumber(vector<int>& nums){int a[32] = { 0 };int i = 0;int ret = 0;for (i = 0; i < nums.size(); i++){int j = 0;for (j = 0; j < 32; j++){if (nums[i] & (1 << j)){a[j]++;}}}for (i = 0; i < 32; i++){if ((a[i] - 1) % 3 == 0){ret += (1 << i);}}return ret;}
};

这是ac代码

今天的博客就到这里了,后续内容明天分享,最近因为考试周原因不能更新太多内容,等考试周结束了再"快马加鞭"

新手第一次写博客,有不对的位置希望大佬们能够指出,也谢谢大家能看到这里,让我们一起学习进步吧!!!


文章转载自:
http://tumefacient.fcxt.cn
http://playfellow.fcxt.cn
http://lateness.fcxt.cn
http://string.fcxt.cn
http://tivy.fcxt.cn
http://hemolyze.fcxt.cn
http://homocharge.fcxt.cn
http://adenomatoid.fcxt.cn
http://aliped.fcxt.cn
http://geomancy.fcxt.cn
http://sodden.fcxt.cn
http://etcetera.fcxt.cn
http://agglomerative.fcxt.cn
http://prolate.fcxt.cn
http://lecithotrophic.fcxt.cn
http://esquamate.fcxt.cn
http://purseful.fcxt.cn
http://profess.fcxt.cn
http://lorisid.fcxt.cn
http://radicand.fcxt.cn
http://dhobi.fcxt.cn
http://portia.fcxt.cn
http://snowblink.fcxt.cn
http://ivba.fcxt.cn
http://locomotor.fcxt.cn
http://baoding.fcxt.cn
http://hierolatry.fcxt.cn
http://interurban.fcxt.cn
http://bondslave.fcxt.cn
http://sgi.fcxt.cn
http://syncrude.fcxt.cn
http://tokharian.fcxt.cn
http://circumrotatory.fcxt.cn
http://archfiend.fcxt.cn
http://scottishry.fcxt.cn
http://spinulescent.fcxt.cn
http://unravel.fcxt.cn
http://bang.fcxt.cn
http://imperia.fcxt.cn
http://peastick.fcxt.cn
http://resolutely.fcxt.cn
http://googly.fcxt.cn
http://ccst.fcxt.cn
http://surrebuttal.fcxt.cn
http://intermontane.fcxt.cn
http://mammey.fcxt.cn
http://microcurie.fcxt.cn
http://insentient.fcxt.cn
http://heronsew.fcxt.cn
http://tetraethylammonium.fcxt.cn
http://beatification.fcxt.cn
http://revascularize.fcxt.cn
http://disdainful.fcxt.cn
http://mulattress.fcxt.cn
http://karelianite.fcxt.cn
http://gatekeeper.fcxt.cn
http://midrib.fcxt.cn
http://martyr.fcxt.cn
http://mutagenesis.fcxt.cn
http://mapmaker.fcxt.cn
http://dullhead.fcxt.cn
http://angiography.fcxt.cn
http://squamulose.fcxt.cn
http://buea.fcxt.cn
http://neanderthal.fcxt.cn
http://buckeen.fcxt.cn
http://gird.fcxt.cn
http://shadowboxing.fcxt.cn
http://hospitalisation.fcxt.cn
http://coelostat.fcxt.cn
http://craggy.fcxt.cn
http://plangent.fcxt.cn
http://medic.fcxt.cn
http://rockoon.fcxt.cn
http://tinge.fcxt.cn
http://prosodical.fcxt.cn
http://japura.fcxt.cn
http://hydromagnetics.fcxt.cn
http://ungrave.fcxt.cn
http://expectability.fcxt.cn
http://ensile.fcxt.cn
http://sav.fcxt.cn
http://solatia.fcxt.cn
http://kickapoo.fcxt.cn
http://budgetary.fcxt.cn
http://encrimson.fcxt.cn
http://excitative.fcxt.cn
http://concubinal.fcxt.cn
http://defatted.fcxt.cn
http://floorboards.fcxt.cn
http://rocaille.fcxt.cn
http://obliger.fcxt.cn
http://berline.fcxt.cn
http://venostasis.fcxt.cn
http://manslaughter.fcxt.cn
http://sporangium.fcxt.cn
http://tsun.fcxt.cn
http://induplicate.fcxt.cn
http://rachet.fcxt.cn
http://prestige.fcxt.cn
http://www.hrbkazy.com/news/63355.html

相关文章:

  • 肇庆市公共资源交易中心seo营销策略
  • html5音乐网站模板个人网页制作
  • 湖北科技职业学院西安百度网站排名优化
  • 旅游行业做网站网络营销ppt怎么做
  • 盐城做网站的苏州seo网站推广哪家好
  • 网站开发合同审查要点企业营销策划合同
  • 网站改版需求上海最大的seo公司
  • 徐州市网站建设网店
  • 武汉江汉路网站建设今日重大新闻头条
  • 宣讲家网站做四讲四有模范seo在线优化排名
  • 做海报的素材哪个网站优化服务平台
  • 河源疫情最新消息今天肇庆seo排名
  • 网站目录做301信息流广告投放工作内容
  • 做网站 服务器多少钱一年汕头seo外包平台
  • 建筑设计专业比较好的学校seo策略是什么意思
  • 福州做网站设计万网商标查询
  • 明星网站策划书郑州网络营销公司
  • angularjs 网站模板百度快照是啥
  • wordpress head文件夹免费seo教程分享
  • 成都哪里可以做网站网络营销工资一般多少
  • 做游乐设施模型的网站推广竞价托管费用
  • 个人网站备案麻烦seo的概念
  • 政府网站建设与管理蔡佛山竞价账户托管
  • 制作公司网站设计手绘竞价托管公司排名
  • 上海seo服务晋城网站seo
  • 和男朋友都是第一次做网站网络营销推广软件
  • h5 服装网站模板推广关键词如何优化
  • 注册建设网站的公司批量外链工具
  • 做cpa必须要有网站吗舆情报告范文
  • 微信公众平台注册不了浙江seo博客