最新的微軟面試題,題目:求一個字串中連續出現次數最多的子串
阿新 • • 發佈:2019-01-28
題目:求一個字串中連續出現次數最多的子串, 請給出分析和程式碼。
給出一個由小寫字母組成的串s和一個不超過s的長度的正整數l,求s所有長度不小於l的字串中在s中不重疊地重複出現次數最多的子串。只要輸出這個子串出現的次數就行了。
特別強調:子串不是子序列,必須是從s截出來連續的一段。s也是自身的子串。
例如
s = "abcabc", l = 3,
那麼輸出2,因為所求的子串是abc。
再例如
s = "ababa", l = 3,
那麼輸出1,長度不小於3的字串包括aba, bab, abab, baba, ababa。其中後面四個顯然都只出現一次。前一個aba和後一個aba重疊了一個a,所以只能算不重疊地出現了一次。
實現介面
上次看到類似的題
將abcbcbcabc轉成
// abcbcbcabc
// bcbcbcabc
// cbcbcabc
// bcbcabc
// cbcabc
// bcabc
// cabc
// abc
// bc
// c
更多內容請見:
http://topic.csdn.net/u/20080424/11/886e2197-4bc7-42b1-a273-0c2915729f0b.html
給出一個由小寫字母組成的串s和一個不超過s的長度的正整數l,求s所有長度不小於l的字串中在s中不重疊地重複出現次數最多的子串。只要輸出這個子串出現的次數就行了。
特別強調:子串不是子序列,必須是從s截出來連續的一段。s也是自身的子串。
例如
s = "abcabc", l = 3,
那麼輸出2,因為所求的子串是abc。
再例如
s = "ababa", l = 3,
那麼輸出1,長度不小於3的字串包括aba, bab, abab, baba, ababa。其中後面四個顯然都只出現一次。前一個aba和後一個aba重疊了一個a,所以只能算不重疊地出現了一次。
實現介面
- C/C++ code
-
int solve(constchar*s, int l);
s和l意思如上。通過返回值返回答案。
*/
#include<stdio.h>int solve(constchar*s, int l);
int main()
{
char s[]="jfurhgyaopylhijknmbjhutyaopglhkyinjbaopfjguthfaopkbmvnchfaop";
int l;
// printf("enter characters/n");
// scanf("%s",s); printf("enter l/n");
scanf("%d",&l);
printf("%d",solve(s,l));
getchar();getchar();
}
int solve(constchar*s, int l)
{
int max=1,c;
int i,j,k,t=0,lenth,take,ls,p,t1=0;
//ls為原始字串的長度 int a[10000];
//讀取樣本字串的陣列 int count1=0,count[10000]={0};
//count陣列記錄樣本字串在原字串中出現的次數,當其為0是表示只有一個 int temp;
for (ls=0;s[ls];ls++) //計算原字串長度 ;
for (i=0;i<=ls-l;i++) //此處i用來控制啟示位置,ls-l表示樣本字串活動範圍 {
for (lenth=l;lenth<=ls
for (take=i,p=0;take<lenth+i;take++,p++) //讀取起始位置為i長度為lenth的字串 {
a[p]=s[take];printf( "%c",a[p]);
}
printf("/n");
t1++; //為陣列count序號 for (j=0;j<=ls-lenth;) //在原字串中開始尋找一樣的樣本字串 {
for (k=j,p=0;k<lenth+j;k++,p++)
{
if (a[p]==s[k])
{
count1++; //統計在同樣長度下相同字元的個數 }
else
{
count1=0;
break;
}
}
if (count1==lenth) //成立則表明有相同的字串 {
t++; //t為次數
//count[t1]=t;printf("t1=%d %d/n",t1,count[t1]);if (t>max) max=t;
j=j+lenth;// 避免出現重疊例如"ababa" 只能算出現一次"aba" count1=0;
}
else j++;
}printf("/n");
t=0;//使次數歸零 }
}
/* for (i=0;i<t1;i++)//從大到小排序
{
for (j=0;j<t1;j++)
{
if (count[j]<count[j+1])
{
temp=count[j];
count[j]=count[j+1];
count[j+1]=temp;
}
// printf("%d",count[j]);
}
//printf("/n");
}*/
printf("最大次數為%d/n",max);
return0;//count[0]; //返回最大的次數 }
上次看到類似的題
將abcbcbcabc轉成
// abcbcbcabc
// bcbcbcabc
// cbcbcabc
// bcbcabc
// cbcabc
// bcabc
// cabc
// abc
// bc
// c
- C/C++ code
-
#include <iostream>
#include <string>
#include <vector>usingnamespace std;
pair<int, string> fun(conststring& str)
{
vector<string> substrs;
int maxcount =1, count =1;
string substr;
int i,len = str.length();
for (i =0; i < len; ++i)
substrs.push_back(str.substr(i, len - i));
for (i =0; i < len; ++i)
{
count =1;
for (int j = i +1; j < len; ++j)
{
if (substrs[i].substr(0, j - i) == substrs[j].substr(0, j - i))
{
++count;
for (int k = j + (j - i); k < len; k += j - i)
{
if (substrs[i].substr(0, j - i) == substrs[k].substr(0, j - i))
++count;
elsebreak;
}
if (count > maxcount)
{
maxcount = count;
substr = substrs[i].substr(0, j - i);
}
}
}
}
return make_pair(maxcount, substr);
}
int main()
{
string str;
pair<int, string> rs;
while(cin>>str)
{
rs = fun(str);
cout<<rs.second<<':'<<rs.first<<'/n';
}
return0;
}
更多內容請見:
http://topic.csdn.net/u/20080424/11/886e2197-4bc7-42b1-a273-0c2915729f0b.html