文字列Sと文字列Tが与えられた場合、複雑さO(n)のTのすべての文字を含むSの最小ウィンドウを見つけます。
例えば、
S = "ADOBECODEBANC"
T = "ABC"
最小ウィンドウは"BANC"
です。
void getstring(char str1[],char str2[],char hash[])
{
int len=strlen(str1);
int i=0,j; //i keeps the previous index
int min=INT_MAX;
int cnt=0;
for(j=0;j<len;j++)
{
if(hash[str1[j]]==-1) //means uninitialized, will be checked for first time only
{
cnt++;
hash[str1[j]]=j;
if(cnt==1)
i=j;
int y=check(hash,str2); //checking for the characters
//printf("y=%d",y);
if(y) //means all the characters are present
{
if( (j-i+1)<min)
{
min=j-i+1;
I=i;
J=j;
}
}
}
else if(hash[str1[j]]>=0)
{
hash[str1[j]]=j;
if(check(hash,str2) )
{
if( hash[str1[i]]==hash[str1[j]] ) //it means that we are moving the first
{ //index only
i=getmin(hash,str2); //get minimum index of the element
if( (j-i+1)<min)
{
min=j-i+1;
I=i;
J=j;
}
}
//else
}
else
{
if( hash[str1[i]]==hash[str1[j]] )
i=hash[str1[i]];
}
}//end of else-if
}//end of for
}
ハッシュを使用してコードを作成しました。つまり、文字列Tの文字のインデックス値をハッシュに保持し、2つのインデックスを使用しています。最初に、下位のインデックスの文字と同じ文字を取得するとすぐに、長さを確認してから、インデックスを更新してください。
このアプローチでは、最悪の場合O(nk)が必要になります。
n - is the number of characters in S
k - is the number of characters in T
O(n)
この問題に時間がかかるアプローチはありますか?