📌  相关文章
📜  str2 的最大子串,它是 str1 的前缀

📅  最后修改于: 2022-05-13 01:57:07.574000             🧑  作者: Mango

str2 的最大子串,它是 str1 的前缀

给定两个字符串str1str2 ,任务是找到str1的最长前缀,它作为字符串str2的子字符串存在。如果可能,打印前缀,否则打印 -1。
例子:

方法:检查str1是否作为str2中的子字符串存在。如果是,则str1是所需的字符串,否则从str1中删除最后一个字符并重复这些步骤,直到字符串str1变为空或找到所需的字符串。
下面是上述方法的实现:

C++
// C++ implementation of the approach
#include 
using namespace std;
 
// Function to return the largest substring
// in str2 which is a prefix of str1
string findPrefix(string str1, string str2)
{
 
    // To store the index in str2 which
    // matches the prefix in str1
    int pos = -1;
 
    // While there are characters left in str1
    while (!str1.empty()) {
 
        // If the prefix is not found in str2
        if (str2.find(str1) == string::npos)
 
            // Remove the last character
            str1.pop_back();
        else {
 
            // Prefix found
            pos = str2.find(str1);
            break;
        }
    }
 
    // No substring found in str2 that
    // matches the prefix of str1
    if (pos == -1)
        return "-1";
 
    return str1;
}
 
// Driver code
int main()
{
    string str1 = "geeksfor";
    string str2 = "forgeeks";
 
    cout << findPrefix(str1, str2);
 
    return 0;
}


Java
// Java implementation of the approach
import java.util.*;
 
class GFG
{
 
// Function to return the largest substring
// in str2 which is a prefix of str1
static String findPrefix(String str1,
                         String str2)
{
 
    // To store the index in str2 which
    // matches the prefix in str1
    boolean pos = false;
 
    // While there are characters left in str1
    while (str1.length() > 0)
    {
 
        // If the prefix is not found in str2
        if (!str2.contains(str1))
 
            // Remove the last character
            str1 = str1.substring(0, str1.length() - 1);
        else
        {
 
            // Prefix found
            pos = str2.contains(str1);
            break;
        }
    }
 
    // No substring found in str2 that
    // matches the prefix of str1
    if (pos == false)
        return "-1";
 
    return str1;
}
 
// Driver code
public static void main(String[] args)
{
    String str1 = "geeksfor";
    String str2 = "forgeeks";
 
    System.out.println(findPrefix(str1, str2));
}
}
 
// This code is contributed by PrinciRaj1992


Python3
# Python3 implementation of the approach
import operator
 
# Function to return the largest substring
# in str2 which is a prefix of str1
def findPrefix(str1, str2):
     
    # To store the index in str2 which
    # matches the prefix in str1
    pos = False;
 
    # While there are characters left in str1
    while (len(str1) != 0):
 
        # If the prefix is not found in str2
        if operator.contains(str2, str1) != True:
 
            # Remove the last character
            str1 = str1[0: len(str1) - 1];
        else:
 
            # Prefix found
            pos = operator.contains(str2, str1);
            break;
 
    # No substring found in str2 that
    # matches the prefix of str1
    if (pos == False):
        return "-1";
 
    return str1;
 
# Driver code
if __name__ == '__main__':
    str1 = "geeksfor";
    str2 = "forgeeks";
 
    print(findPrefix(str1, str2));
 
# This code is contributed by 29AjayKumar


C#
// C# implementation of the approach
using System;
 
class GFG
{
 
// Function to return the largest substring
// in str2 which is a prefix of str1
static String findPrefix(String str1,
                         String str2)
{
 
    // To store the index in str2 which
    // matches the prefix in str1
    bool pos = false;
 
    // While there are characters left in str1
    while (str1.Length > 0)
    {
 
        // If the prefix is not found in str2
        if (!str2.Contains(str1))
 
            // Remove the last character
            str1 = str1.Substring(0, str1.Length - 1);
        else
        {
 
            // Prefix found
            pos = str2.Contains(str1);
            break;
        }
    }
 
    // No substring found in str2 that
    // matches the prefix of str1
    if (pos == false)
        return "-1";
 
    return str1;
}
 
// Driver code
public static void Main(String[] args)
{
    String str1 = "geeksfor";
    String str2 = "forgeeks";
 
    Console.WriteLine(findPrefix(str1, str2));
}
}
 
// This code is contributed by Princi Singh


Javascript


输出:
geeks

时间复杂度: O(N * M) 其中 N, M 是给定字符串的长度。