![]() |
VOOZH | about |
Given a String, extract all unique substrings with their frequency.
Input : test_str = "ababa"
Output : {'a': 3, 'ab': 2, 'aba': 2, 'abab': 1, 'ababa': 1, 'b': 2, 'ba': 2, 'bab': 1, 'baba': 1}
Explanation : All substrings with their frequency extracted.
Input : test_str = "GFGF"
Output : {'G': 2, 'GF': 2, 'GFG': 1, 'GFGF': 1, 'F': 2, 'FG': 1, 'FGF': 1}
Explanation : All substrings with their frequency extracted.
Method #1: Using count() method
First, we need to find all the substrings then count() method can be used to find the frequency of a substring and store it in the dictionary. Then, simply print the dictionary.
The original string is : abababa
Extracted frequency dictionary : {'a': 4, 'ab': 3, 'aba': 2, 'abab': 1, 'ababa': 1, 'ababab': 1, 'abababa': 1, 'b': 3, 'ba': 3, 'bab': 1, 'baba': 1, 'babab': 1, 'bababa': 1}Method #2: Using loop + list comprehension
The combination of the above functionalities can be used to solve this problem. In this, we first extract all the substrings using list comprehension, post that loop is used to increase frequency.
The original string is : abababa
Extracted frequency dictionary : {'a': 4, 'ab': 3, 'aba': 3, 'abab': 2, 'ababa': 2, 'ababab': 1, 'abababa': 1, 'b': 3, 'ba': 3, 'bab': 2, 'baba': 2, 'babab': 1, 'bababa': 1}Method #3: Using list comprehension
This is yet another way in which this task can be performed. In this, we perform both the tasks, of extracting substring and computing frequency in a single nested list comprehension.
The original string is : abababa
Extracted frequency dictionary : {'a': 4, 'ab': 3, 'aba': 3, 'abab': 2, 'ababa': 2, 'ababab': 1, 'abababa': 1, 'b': 3, 'ba': 3, 'bab': 2, 'baba': 2, 'babab': 1, 'bababa': 1}Time Complexity: O(n2)
Auxiliary Space: O(n)
Method #4: Using regex + findall() method
Step by step Algorithm:
The original string is : abababa
Extracted frequency dictionary : {'a': 4, 'b': 3, 'ab': 3, 'ba': 3, 'aba': 3, 'bab': 2, 'abab': 2, 'baba': 2, 'ababa': 2, 'babab': 1, 'ababab': 1, 'bababa': 1, 'abababa': 1}Time complexity: O(n^2), where n is the length of the input string. The nested loops for finding substrings and counting their frequencies contribute to the O(n^2) time complexity.
Auxiliary Space: O(n), where n is the length of the input string.
Method 5: Using a sliding window technique with a dictionary to keep track of the counts.
Step-by-step approach:
The original string is : abababa
Extracted frequency dictionary : {'a': 4, 'b': 3, 'ab': 3, 'ba': 3, 'aba': 3, 'bab': 2, 'abab': 2, 'baba': 2, 'ababa': 2, 'babab': 1, 'ababab': 1, 'bababa': 1, 'abababa': 1}Time complexity: O(n^3), since we have a nested loop over the range of n and over the range n - window_size + 1 for each window_size.
Auxiliary space: O(n^3), since we are storing all possible substrings in the dictionary.