Warning: file_get_contents(/data/phpspider/zhask/data//catemap/0/search/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Algorithm 包含每个子字符串的dict字数_Algorithm_Search_Substring - Fatal编程技术网

Algorithm 包含每个子字符串的dict字数

Algorithm 包含每个子字符串的dict字数,algorithm,search,substring,Algorithm,Search,Substring,我偶然遇到一个问题,该问题要求用户计算K个字符串列表中N个子字符串的匹配字数。对于以下约束,每个字符串的长度为M: 0 < length of substring <= 100 0 < M <= 100 0 < N <= 10,000 0 < K <= 10,000 例如: {serpent,lose,last}的子字符串se将产生2 考虑到这个输入的巨大边界,检查每个子字符串的所有K字符串将过于昂贵。因为这个原因,九广铁路将无法运作。使用后缀树

我偶然遇到一个问题,该问题要求用户计算K个字符串列表中N个子字符串的匹配字数。对于以下约束,每个字符串的长度为M:

0 < length of substring <= 100
0 < M <= 100
0 < N <= 10,000
0 < K <= 10,000
例如: {serpent,lose,last}的子字符串se将产生2

考虑到这个输入的巨大边界,检查每个子字符串的所有K字符串将过于昂贵。因为这个原因,九广铁路将无法运作。使用后缀树预处理字符串将是下一个更好的选择。但我不可能为每个单词创建后缀树,因为它会再次导致上述问题。即使我尝试将所有单词连接在一起,问题是我无法检测同一单词中的子字符串,例如{stools,sat}的子字符串s将产生3


有没有更有效的方法来解决这个问题?

一种方法是为要搜索的字符串的每个字符建立索引

蛇将给予:

s>{0} e>{1,4} r>{2} p>{3} n>{5} t>{6} 因此,对于在此字符串中搜索的每个单词,请在字典中查找其第一个和最后一个字符

如果找到了它们,则需要查看相应的索引,以找到与字符串长度匹配的对

一旦找到,您就可以进行完整的字符串比较,但只有在这种情况下

代码可以是这样的c:

static void Main( string[] args )
{
    List<string> words = new List<string>() { "se", "s", "pen", "oo", "st" };
    List<int> scores = new List<int>( words.Select( w => 0 ) );

    List<string> strings = new List<string>() { "serpent", "lose", "last", "stools", "sat" };

    foreach ( var s in strings )
    {
        var indexes = MakeIndexes( s );

        for ( int i = 0 ; i < words.Count ; i++ )
        {
            scores[i] += Score( words[i], s, indexes );
        }
    }
}

static int Score( string word, string s, Dictionary<char, List<int>> indexes )
{
    int firstPos = 0, lastPos = word.Length - 1;
    char first = word[firstPos];
    char last = word[lastPos];

    List<int> firstIndexes;
    if ( indexes.TryGetValue( first, out firstIndexes ) )
    {
        if ( firstPos == lastPos )
            return 1;
        else
        {
            List<int> lastIndexes;
            if ( indexes.TryGetValue( last, out lastIndexes ) )
            {
                int fiPos = 0, liPos = 0;

                while ( fiPos < firstIndexes.Count && liPos < lastIndexes.Count )
                {
                    int fi = firstIndexes[fiPos], li = lastIndexes[liPos];
                    int len = li - fi;

                    if ( len < lastPos )
                        liPos++;
                    else if ( len == lastPos )
                    {
                        if ( FullCompare( word, s, fi ) )
                            return 1;
                        fiPos++;
                        liPos++;
                    }
                    else
                        fiPos++;
                }
            }
        }
    }

    return 0;
}

static bool FullCompare( string word, string s, int from )
{
    for ( int i = 0 ; i < word.Length ; i++ )
        if ( word[i] != s[i + from] )
            return false;
    return true;
}

static Dictionary<char, List<int>> MakeIndexes( string s )
{
    Dictionary<char, List<int>> result = new Dictionary<char, List<int>>();

    for ( int i = 0 ; i < s.Length ; i++ )
    {
        char c = s[i];

        List<int> indexes;
        if ( result.TryGetValue( c, out indexes ) == false )
        {
            indexes = new List<int>();
            result.Add( c, indexes );
        }

        indexes.Add( i );
    }

    return result;
}

一种方法是索引要搜索的字符串的每个字符

蛇将给予:

s>{0} e>{1,4} r>{2} p>{3} n>{5} t>{6} 因此,对于在此字符串中搜索的每个单词,请在字典中查找其第一个和最后一个字符

如果找到了它们,则需要查看相应的索引,以找到与字符串长度匹配的对

一旦找到,您就可以进行完整的字符串比较,但只有在这种情况下

代码可以是这样的c:

static void Main( string[] args )
{
    List<string> words = new List<string>() { "se", "s", "pen", "oo", "st" };
    List<int> scores = new List<int>( words.Select( w => 0 ) );

    List<string> strings = new List<string>() { "serpent", "lose", "last", "stools", "sat" };

    foreach ( var s in strings )
    {
        var indexes = MakeIndexes( s );

        for ( int i = 0 ; i < words.Count ; i++ )
        {
            scores[i] += Score( words[i], s, indexes );
        }
    }
}

static int Score( string word, string s, Dictionary<char, List<int>> indexes )
{
    int firstPos = 0, lastPos = word.Length - 1;
    char first = word[firstPos];
    char last = word[lastPos];

    List<int> firstIndexes;
    if ( indexes.TryGetValue( first, out firstIndexes ) )
    {
        if ( firstPos == lastPos )
            return 1;
        else
        {
            List<int> lastIndexes;
            if ( indexes.TryGetValue( last, out lastIndexes ) )
            {
                int fiPos = 0, liPos = 0;

                while ( fiPos < firstIndexes.Count && liPos < lastIndexes.Count )
                {
                    int fi = firstIndexes[fiPos], li = lastIndexes[liPos];
                    int len = li - fi;

                    if ( len < lastPos )
                        liPos++;
                    else if ( len == lastPos )
                    {
                        if ( FullCompare( word, s, fi ) )
                            return 1;
                        fiPos++;
                        liPos++;
                    }
                    else
                        fiPos++;
                }
            }
        }
    }

    return 0;
}

static bool FullCompare( string word, string s, int from )
{
    for ( int i = 0 ; i < word.Length ; i++ )
        if ( word[i] != s[i + from] )
            return false;
    return true;
}

static Dictionary<char, List<int>> MakeIndexes( string s )
{
    Dictionary<char, List<int>> result = new Dictionary<char, List<int>>();

    for ( int i = 0 ; i < s.Length ; i++ )
    {
        char c = s[i];

        List<int> indexes;
        if ( result.TryGetValue( c, out indexes ) == false )
        {
            indexes = new List<int>();
            result.Add( c, indexes );
        }

        indexes.Add( i );
    }

    return result;
}