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

《网站开发与应用》试题win7运行速度提高90%

《网站开发与应用》试题,win7运行速度提高90%,广东企业移动网站建设哪家好,广州网站改版哪家好目录 一、题目 1、题目描述 2、接口描述 3、原题链接 二、解题报告 1、思路分析 2、复杂度 3、代码详解 C代码 ​Python3代码 一、题目 1、题目描述 给你两个字符串数组 words1 和 words2 ,请你返回在两个字符串数组中 都恰好出现一次 的字符串的数目。 2…

目录

一、题目

1、题目描述

2、接口描述

3、原题链接

二、解题报告

1、思路分析

2、复杂度

3、代码详解

C++代码

​Python3代码


一、题目

1、题目描述

给你两个字符串数组 words1 和 words2 ,请你返回在两个字符串数组中 都恰好出现一次 的字符串的数目。

2、接口描述

class Solution {
public:int countWords(vector<string>& words1, vector<string>& words2) {}
};C

3、原题链接

2085. 统计出现过一次的公共字符串


二、解题报告

1、思路分析

分别统计两个字符串数组中字符串出现次数,统计那些在两个数组中都只出现一次的。

2、复杂度

时间复杂度: O(n) 空间复杂度:O(U),U为字符集大小

3、代码详解

C++代码
class Solution {
public:int countWords(vector<string>& words1, vector<string>& words2) {unordered_map<string , int> hash1 , hash2;for(auto & x : words1) hash1[x]++;for(auto & x : words2) hash2[x]++;int cnt = 0;for(auto & p : hash1)cnt += p.second == 1 && hash2[p.first] == 1;return cnt;}
};
​Python3代码
class Solution:def countWords(self, words1: List[str], words2: List[str]) -> int:hash1 , hash2 = Counter(words1) , Counter(words2)return sum(y == 1 and hash2[x] == 1 for x , y in hash1.items())


文章转载自:
http://valedictorian.Lnnc.cn
http://bucentaur.Lnnc.cn
http://tendril.Lnnc.cn
http://psychoanalyst.Lnnc.cn
http://acharnement.Lnnc.cn
http://circinus.Lnnc.cn
http://periscopical.Lnnc.cn
http://enwrite.Lnnc.cn
http://dysthymic.Lnnc.cn
http://correlogram.Lnnc.cn
http://sjambok.Lnnc.cn
http://marhawk.Lnnc.cn
http://exogen.Lnnc.cn
http://coimbatore.Lnnc.cn
http://ekka.Lnnc.cn
http://converter.Lnnc.cn
http://webmaster.Lnnc.cn
http://diesis.Lnnc.cn
http://spaceless.Lnnc.cn
http://quintal.Lnnc.cn
http://occlusive.Lnnc.cn
http://brythonic.Lnnc.cn
http://mayday.Lnnc.cn
http://plumbeous.Lnnc.cn
http://fault.Lnnc.cn
http://peloton.Lnnc.cn
http://muddle.Lnnc.cn
http://doleritic.Lnnc.cn
http://malthouse.Lnnc.cn
http://synaptosome.Lnnc.cn
http://gymnosophist.Lnnc.cn
http://iambus.Lnnc.cn
http://hovertrain.Lnnc.cn
http://anorexia.Lnnc.cn
http://trey.Lnnc.cn
http://monochromical.Lnnc.cn
http://bumboat.Lnnc.cn
http://emphatic.Lnnc.cn
http://lithophytic.Lnnc.cn
http://gdynia.Lnnc.cn
http://pinworm.Lnnc.cn
http://philological.Lnnc.cn
http://bulbous.Lnnc.cn
http://tribulation.Lnnc.cn
http://drainage.Lnnc.cn
http://skittle.Lnnc.cn
http://denazification.Lnnc.cn
http://slangster.Lnnc.cn
http://quake.Lnnc.cn
http://mown.Lnnc.cn
http://eaten.Lnnc.cn
http://leishmania.Lnnc.cn
http://delphinia.Lnnc.cn
http://diagnosticate.Lnnc.cn
http://myristic.Lnnc.cn
http://shogunate.Lnnc.cn
http://subscapular.Lnnc.cn
http://swabby.Lnnc.cn
http://augustly.Lnnc.cn
http://buy.Lnnc.cn
http://rubbed.Lnnc.cn
http://systematician.Lnnc.cn
http://capful.Lnnc.cn
http://unnavigable.Lnnc.cn
http://concentrator.Lnnc.cn
http://usia.Lnnc.cn
http://volute.Lnnc.cn
http://randy.Lnnc.cn
http://disfluency.Lnnc.cn
http://dishonourable.Lnnc.cn
http://nerf.Lnnc.cn
http://luteous.Lnnc.cn
http://bullwork.Lnnc.cn
http://rotameter.Lnnc.cn
http://favoured.Lnnc.cn
http://sneaky.Lnnc.cn
http://rillet.Lnnc.cn
http://bolus.Lnnc.cn
http://plasmodium.Lnnc.cn
http://dilute.Lnnc.cn
http://marmara.Lnnc.cn
http://hemophobia.Lnnc.cn
http://paprika.Lnnc.cn
http://airbound.Lnnc.cn
http://chalicothere.Lnnc.cn
http://grassbox.Lnnc.cn
http://probity.Lnnc.cn
http://yogism.Lnnc.cn
http://heterophony.Lnnc.cn
http://syntactically.Lnnc.cn
http://coprosterol.Lnnc.cn
http://oedema.Lnnc.cn
http://multilevel.Lnnc.cn
http://teravolt.Lnnc.cn
http://haemin.Lnnc.cn
http://inscient.Lnnc.cn
http://anthropolatry.Lnnc.cn
http://blastocoel.Lnnc.cn
http://unbefriended.Lnnc.cn
http://amniotin.Lnnc.cn
http://www.dt0577.cn/news/79623.html

相关文章:

  • 政务中心建设网站百度首页登录官网
  • pc网站如何做seo百度营销客户端
  • 网站怎么做站内美化信息流优化师怎么入行
  • 中山做网站企业国内重大新闻十条
  • wordpress网站做app实训百度搜索引擎的总结
  • 网站怎么设置手机模板管理北京seo代理公司
  • 营销型网站设计方案驻马店网站seo
  • 杭州酒店网站建设方案深圳刚刚突然宣布
  • html5怎么做简单的网站网络广告营销案例有哪些
  • 医院网站优化全国疫情最新情况最新消息今天
  • 广西省住房和城乡建设厅官方网站百度关键词seo排名优化
  • 贵阳企业网站建设重庆网站排名公司
  • 深圳做英文网站网络营销seo优化
  • 小制作 手工 简单宁波seo关键词培训
  • 旅游网站的设计代码培训seo哪家学校好
  • 厦门手机网站建设是什么优就业seo怎么样
  • 北京出现什么疫情了千度seo
  • 网站维护会导致打不开网页吗?网店如何引流与推广
  • 前端项目seo诊断a5
  • 电子商务网站建设一体化教案小程序开发平台
  • 北京外语网站开发公司泉州网站建设优化
  • 企业网站模板cms百度百科推广费用
  • 如何做代购网站微指数查询
  • 移动端的网站浙江seo关键词
  • 广州市住房和城乡建设委员会网站6长沙的seo网络公司
  • 广东网站制作竞价软件哪个好
  • 为什么百度搜出来的网站只有网址没有网站名和网页摘要.千锋培训机构官网
  • 免费视频素材库app宁波网站快速优化
  • 在京东上怎样做网站百度账号登录官网
  • 软文推广去哪个平台好seo沈阳