国内最全IT社区平台 联系我们 | 收藏本站
华晨云阿里云优惠2
您当前位置:首页 > php开源 > php教程 > LeetCode[String]: Longest Common Prefix

LeetCode[String]: Longest Common Prefix

来源:程序员人生   发布时间:2015-03-11 07:51:09 阅读次数:3129次

Write a function to find the longest common prefix string amongst an array of strings.

这个题目非常简单,只要弄清楚题意就能够非常快地解决,我的C++代码实现以下:

string longestCommonPrefix(vector<string> &strs) { if (strs.empty()) return ""; string commonPrefix = strs[0]; for (int i = 1; i < strs.size(); ++i) { int j = 0; for ( ; j < commonPrefix.size() && j < strs[i].size(); ++j) { if (commonPrefix[j] != strs[i][j]) break; } commonPrefix = commonPrefix.substr(0, j); } return commonPrefix; }

时间性能以下:

这里写图片描述

生活不易,码农辛苦
如果您觉得本网站对您的学习有所帮助,可以手机扫描二维码进行捐赠
程序员人生
------分隔线----------------------------
分享到:
------分隔线----------------------------
关闭
程序员人生