码迷,mamicode.com
首页 > 其他好文 > 详细

Longest Common Prefix

时间:2015-09-10 16:04:41      阅读:95      评论:0      收藏:0      [点我收藏+]

标签:

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

 

 

 1 string longestCommonPrefix(vector<string>& strs) {
 2         int i=0,j=0;
 3         if(strs.size()==0)
 4         return "";
 5         int len=strs[0].length();
 6          int size=strs.size();
 7         string res;
 8         while(j<size)
 9         {
10             
11             
12             for(i=0;i<len;i++)
13             {
14                 if(strs[j][i]!=strs[0][i])
15                 break;
16             }
17             len=i;
18             j++;
19         }
20         for(j=0;j<i;j++)
21         res+=strs[0][j];
22         
23         return res;
24     }

 

Longest Common Prefix

标签:

原文地址:http://www.cnblogs.com/hexhxy/p/4797899.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!