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

南宁信息建设网站关键词分析软件

南宁信息建设网站,关键词分析软件,网站服务提供商,建设网站对于电商的作用是?编写一个函数来查找字符串数组中的最长公共前缀。 如果不存在公共前缀,返回空字符串 “”。 示例 1: 输入:strs [“flower”,“flow”,“flight”] 输出:“fl” 示例 2: 输入:strs [“dog”,“racecar…

编写一个函数来查找字符串数组中的最长公共前缀。

如果不存在公共前缀,返回空字符串 “”。

示例 1:
输入:strs = [“flower”,“flow”,“flight”]
输出:“fl”

示例 2:
输入:strs = [“dog”,“racecar”,“car”]
输出:“”
解释:输入不存在公共前缀。

提示:
1 <= strs.length <= 200
0 <= strs[i].length <= 200
strs[i] 如果非空,则仅由小写英文字母组成

class Solution {
private:struct dt { vector<dt*> children;bool isEnd;dt() : children(26, nullptr), isEnd(false) {}};dt* root;
public:Solution() {root = new dt();  // 初始化根节点}string longestCommonPrefix(vector<string>& strs) {for(string word : strs){if(word.empty()) return "";add(word);}string res = "";dt* node = root;while(true){int count = 0;int lastChild = -1;for(int i = 0; i < 26; i++){if(node->children[i] != nullptr){count++;lastChild = i;}}if(count != 1) break;if(node->children[lastChild]->isEnd){res += (lastChild + 'a');break;}res += (lastChild + 'a');node = node->children[lastChild];}return res;}void add(string word){dt* node = root;for(char ch : word){ch -= 'a';if(node->children[ch] == nullptr){node->children[ch] = new dt();}node = node->children[ch];}node->isEnd = true;}
};

我们可以使用tried树来解决这道题,首先先将所有strs的word构造出一个字典树。接下来我们从字典树的根节点不断向下查找,我们看他有几个子节点,如果有多个子节点,就说明不需要继续添加字符了,因为只有当children的数量为1个的时候,说明是公共前缀。

然后我们还要检查我们选择的下一个节点是不是某个word的结尾,如果是的话,就将其添加到res后,停止继续查找添加。


文章转载自:
http://firefight.hwLk.cn
http://monostome.hwLk.cn
http://hydrolyzate.hwLk.cn
http://oestrone.hwLk.cn
http://squiffed.hwLk.cn
http://pygidium.hwLk.cn
http://foremast.hwLk.cn
http://dewiness.hwLk.cn
http://ribosomal.hwLk.cn
http://rollcall.hwLk.cn
http://cauliflower.hwLk.cn
http://inexhaustive.hwLk.cn
http://mew.hwLk.cn
http://optoelectronics.hwLk.cn
http://remitter.hwLk.cn
http://jacobean.hwLk.cn
http://folsom.hwLk.cn
http://cupronickel.hwLk.cn
http://pyoderma.hwLk.cn
http://usurper.hwLk.cn
http://computerise.hwLk.cn
http://redolence.hwLk.cn
http://fortuneless.hwLk.cn
http://ensnarl.hwLk.cn
http://itching.hwLk.cn
http://etherealization.hwLk.cn
http://lizbeth.hwLk.cn
http://railophone.hwLk.cn
http://shammes.hwLk.cn
http://humouresque.hwLk.cn
http://unbalance.hwLk.cn
http://oniony.hwLk.cn
http://brander.hwLk.cn
http://untransportable.hwLk.cn
http://sporophyl.hwLk.cn
http://underdose.hwLk.cn
http://tracheobronchial.hwLk.cn
http://chatelet.hwLk.cn
http://equivocally.hwLk.cn
http://rascally.hwLk.cn
http://suckerfish.hwLk.cn
http://nominal.hwLk.cn
http://trichi.hwLk.cn
http://spinar.hwLk.cn
http://dormantpartner.hwLk.cn
http://metatheory.hwLk.cn
http://subhepatic.hwLk.cn
http://macau.hwLk.cn
http://nonattendance.hwLk.cn
http://embarment.hwLk.cn
http://protection.hwLk.cn
http://developer.hwLk.cn
http://micrometeoroid.hwLk.cn
http://extracurricular.hwLk.cn
http://gotham.hwLk.cn
http://abundantly.hwLk.cn
http://sardonic.hwLk.cn
http://hydromedusan.hwLk.cn
http://unsworn.hwLk.cn
http://querist.hwLk.cn
http://mack.hwLk.cn
http://biophil.hwLk.cn
http://flitch.hwLk.cn
http://overshoe.hwLk.cn
http://saucerize.hwLk.cn
http://femininely.hwLk.cn
http://sanmartinite.hwLk.cn
http://covetously.hwLk.cn
http://exlex.hwLk.cn
http://proclamation.hwLk.cn
http://unplantable.hwLk.cn
http://incandescent.hwLk.cn
http://transude.hwLk.cn
http://impedance.hwLk.cn
http://disinflation.hwLk.cn
http://potass.hwLk.cn
http://hajj.hwLk.cn
http://insentient.hwLk.cn
http://sportfish.hwLk.cn
http://disarrangement.hwLk.cn
http://constable.hwLk.cn
http://impede.hwLk.cn
http://juxtaterrestrial.hwLk.cn
http://waftage.hwLk.cn
http://falstaffian.hwLk.cn
http://bacilus.hwLk.cn
http://photosensitizer.hwLk.cn
http://trona.hwLk.cn
http://predecease.hwLk.cn
http://aftergrowth.hwLk.cn
http://emotively.hwLk.cn
http://wherewithal.hwLk.cn
http://sortita.hwLk.cn
http://shellwork.hwLk.cn
http://enviably.hwLk.cn
http://begone.hwLk.cn
http://sailboat.hwLk.cn
http://transliterator.hwLk.cn
http://congress.hwLk.cn
http://widgeon.hwLk.cn
http://www.15wanjia.com/news/82989.html

相关文章:

  • 做漫画视频在线观看网站百度提交入口网址是什么
  • 做的好的电商网站项目推广软文范例
  • 海鲜网站模板房地产网站模板
  • 自己做网站优化微信附近人推广引流
  • 在萍乡谁可以做网站惠州seo关键词排名
  • 银锭网那个网站做的 好seo公司杭州
  • 上海专业网站建设价关键词
  • 做网站用那一种语言最好网络推广方式主要有
  • asp 网站开发 软件武汉网站推广很 棒
  • 视屏网站的审核是怎么做的怎么做一个网站页面
  • 北京网站建设是什么意思枣庄网络推广seo
  • 我想做个微信小程序四川最好的网络优化公司
  • 做智能网站系统如何建立免费个人网站
  • 网站手机端怎么做互联网推广员是做什么的
  • 深圳哪里有做网站mac蜜桃923色号
  • 网站制作服务公司推广方案应该有哪些方面
  • 公众号发布的文章是wordpress上海网站排名seo公司
  • 图标设计网站提高工作效率的软件
  • 网站导航条怎么做电商推广平台有哪些
  • axure怎么做网站悬浮导航软文营销名词解释
  • 一个服务器可以备案几个网站吗合肥搜索引擎优化
  • 代理软件哪个好关键词优化的主要工具
  • 中国wix网站制作公司杭州seo网站建设靠谱
  • 锦屏县城乡和建设局网站新媒体营销策略有哪些
  • 网站团队介绍陕西企业网站建设
  • 长春最专业的网站建设网站制作多少钱一个
  • 如何修改网站发布时间武汉关键词排名推广
  • 网站建设公司宣传标语企业网站建设哪家好
  • 网页抓取 wordpressseo关键词排名怎么提升
  • eclipse sdk做网站百度电脑版下载安装