码迷,mamicode.com
首页 > 编程语言 > 详细

LeetCode -- 求字符串数组中的最长公共前缀

时间:2015-07-25 15:14:19      阅读:100      评论:0      收藏:0      [点我收藏+]

标签:


题目描述:


Write a function to find the longest common prefix string amongst an array of strings.
就是给定1个字符串数组,找出公共最长前缀。


思路很直接,使用1个索引来存最长公共前缀的长度就可以了。


注意, 如果使用1个字符串变量来存前缀的话,是不能AC的,因为题目不允许使用额外的空间。



public string LongestCommonPrefix(string[] strs) {
        
    if(strs == null || strs.Length == 0){
	    return string.Empty;
	}
	
	if(strs.Length == 1){
	    return strs[0];
	}
	
	var index = 0;
	for(var j = 0;j < strs[0].Length; j++){
		for(var i = 1;i < strs.Length; i++){
			if(j >= strs[i].Length || strs[0][j] != strs[i][j]){
				return strs[0].Substring(0,index);
			}
		}
		index++;
		
	}
	
	return strs[0].Substring(0 ,index);
	
    }


版权声明:本文为博主原创文章,未经博主允许不得转载。

LeetCode -- 求字符串数组中的最长公共前缀

标签:

原文地址:http://blog.csdn.net/lan_liang/article/details/47056413

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