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

Longest Common Prefix

时间:2014-12-15 20:24:22      阅读:174      评论:0      收藏:0      [点我收藏+]

标签:blog   io   ar   for   on   2014   log   cti   ef   

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


#include<stdio.h>
#include<string.h>
#include<stdlib.h>

char *longestCommonPrefix(char *strs[],int n)
{
    int i,j,k;
    char *res=(char *)malloc(sizeof(char)*1000);
    char *p=strs[0];
    char *q=strs[1];
    //printf("%s,%c\n",q,q[1]);
    //printf("%s\n",p);
    if(p==NULL) return "";
    if(q==NULL) return p;
    for(i=0;p[i]!='\0' && q[i]!='\0';i++){
        if(p[i]==q[i]) res[i]=p[i];
        else break;
    }
    res[i]='\0';
    for(k=2,q=strs[k];k<n;k++){
        for(i=0;res[i]!='\0'&&strs[k][i]!='\0';i++){
            if(res[i]!=strs[k][i]) break;
        }
        res[i]='\0';
    }
    return res;
}

void main(){
    char *str[]={"abc","a","abcd"};
    char *str1[]={"a","b"};
    printf("%s\n",longestCommonPrefix(str1,2));
}


Longest Common Prefix

标签:blog   io   ar   for   on   2014   log   cti   ef   

原文地址:http://blog.csdn.net/uj_mosquito/article/details/41947477

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