雅虎笔试题(字符串操作)

时间:2020-11-21 18:18:29 笔试题目 我要投稿

雅虎笔试题(字符串操作)

  给定字符串A和B,输出A和B中的'最大公共子串。

雅虎笔试题(字符串操作)

  比如A=”aocdfe” B=”pmcdfa” 则输出”cdf”

  */

  //Author: azhen

  #include

  #include

  #include

  char *commanstring(char shortstring[], char longstring[])

  {

  int i, j;

  char *substring=malloc(256);

  if(strstr(longstring, shortstring)!=NULL) //如果……,那么返回shortstring

  return shortstring;

  for(i=strlen(shortstring)-1;i>0; i–) //否则,开始循环计算

  {

  for(j=0; j<=strlen(shortstring)-i; j++){

  memcpy(substring, &shortstring[j], i);

  substring[i]=’\0′;

  if(strstr(longstring, substring)!=NULL)

  return substring;

  }

  }

  return NULL;

  }

  main()

  {

  char *str1=malloc(256);

  char *str2=malloc(256);

  char *comman=NULL;

  gets(str1);

  gets(str2);

  if(strlen(str1)>strlen(str2)) //将短的字符串放前面

  comman=commanstring(str2, str1);

  else

  comman=commanstring(str1, str2);

  printf(“the longest comman string is: %s\n”, comman);

  }

【雅虎笔试题(字符串操作)】相关文章:

《PHP字符串操作》收集整理11-23

linux shell编程变脸赋值和字符串操作10-05

JavaScript中常见的字符串操作函数及用法11-14

华为2017笔试题08-16

360笔试题目07-11

php开发中常用的操作字符串的函数说明11-15

华为2017笔试试题08-10

Linux操作试题及答案09-11

excel操作试题及答案10-05