2185. Counting Words With a Given Prefix - Detailed Explanation
Problem Statement
You are given an array of strings words and a string pref. Your task is to count how many strings in words have pref as a prefix. A string pref is considered a prefix of a string word if word starts with pref.
Examples:
-
Example 1:
- Input:
words = ["pay", "attention", "practice", "attend"]
,pref = "at"
- Output:
2
- Explanation: Among the words,
"attention"
and"attend"
start with"at"
.
- Input:
-
Example 2:
- Input:
words = ["leetcode", "win", "loops", "success"]
,pref = "code"
- Output:
0
- Explanation: No word starts with
"code"
.
- Input:
-
Example 3:
- Input:
words = ["apple", "app", "application"]
,pref = "app"
- Output:
3
- Explanation: All the words start with
"app"
.
- Input:
Constraints:
- The array words can have a reasonable number of strings.
- Each string in words and the prefix pref contain only lowercase English letters.
- The length of pref is at least 1.
Hints Before Solving
- Hint 1: Think about how you can check if one string starts with another.
- Hint 2: For each word in the list, you only need to check the beginning segment (of length equal to pref) to determine if it matches pref.
- Hint 3: Consider what built-in string methods your programming language offers for prefix checking.
Approaches to Solve the Problem
Approach 1: Brute Force Iteration
Explanation:
-
Idea:
Iterate through each word in the words array and check if the word starts with pref using string comparison. -
Steps:
- Initialize a counter to 0.
- For each word in words, check if the first
len(pref)
characters of the word equal pref. - If they match, increment the counter.
- Return the counter after processing all words.
-
Visual Walkthrough:
Forwords = ["apple", "app", "application"]
andpref = "app"
:- Check
"apple"
→ first 3 letters are"app"
→ count becomes 1. - Check
"app"
→ it exactly matches"app"
→ count becomes 2. - Check
"application"
→ first 3 letters are"app"
→ count becomes 3.
- Check
Complexity:
- Time Complexity: O(n * m), where n is the number of words and m is the length of the prefix.
- Space Complexity: O(1) extra space.
Approach 2: Using a Trie (Prefix Tree)
Explanation:
-
Idea:
Build a Trie from the words in the array. Once the Trie is built, traverse it using the characters of pref to reach the corresponding node, then count all words that have that node as a prefix. -
Steps:
- Insert all words into the Trie.
- Traverse the Trie using pref. If at any point the path does not exist, return 0.
- Once at the node corresponding to the end of pref, count the number of words that have this prefix (this can be done by storing a count at each node during insertion).
-
Visual Walkthrough:
Givenwords = ["pay", "attention", "practice", "attend"]
andpref = "at"
, the Trie would have a branch starting with'a'
→'t'
that records a count of 2 (from"attention"
and"attend"
).
Complexity:
- Time Complexity:
- Building the Trie: O(total length of all words).
- Querying the prefix: O(m) where m is the length of pref.
- Space Complexity: O(total length of all words) for storing the Trie.
Note: While the Trie approach is efficient for multiple prefix queries, it might be more complex to implement if you only need to answer a single query.
Code Implementations
Python Implementation (Brute Force Approach)
Java Implementation (Brute Force Approach)
Complexity Analysis
- Brute Force Approach:
-
Time Complexity: O(n * m) where n is the number of words and m is the length of the prefix pref (since each word is checked up to the length of pref).
-
Space Complexity: O(1) extra space.
-
- Trie Approach (if implemented):
- Time Complexity: O(total length of all words) for building the Trie and O(m) for querying the prefix.
- Space Complexity: O(total length of all words) for storing the Trie.
Step-by-Step Walkthrough (Brute Force Approach)
-
Initialize a Counter:
- Start with
count = 0
.
- Start with
-
Iterate Over Each Word:
- For each word in the array, first check if the word’s length is at least as long as pref.
-
Check for Prefix:
- Compare the first
len(pref)
characters of the word with pref. - If they match, increment the counter.
- Compare the first
-
Return the Result:
- After processing all words, return the counter value.
Common Mistakes & Edge Cases
-
Common Mistakes:
- Not checking if the word’s length is less than the prefix’s length, which can lead to errors.
- Using inefficient methods to compare prefixes (e.g., checking character by character unnecessarily when built-in methods are available).
-
Edge Cases:
- Empty Array: When words is empty, the function should return 0.
- Prefix Longer Than Some Words: Words shorter than pref should not be counted.
- All Words Match: If every word in words starts with pref, the counter should equal the length of words.
- No Matches: When no words have the given prefix, the result should be 0.
Alternative Variations and Related Problems
-
Alternative Variation:
Count the number of words that end with a given suffix instead of a prefix. -
Related Problems for Further Practice:
- Implement Trie (Prefix Tree): Practice building a Trie and using it for prefix queries.
- Longest Common Prefix: Find the longest common prefix among a set of strings.
- Word Search Problems: Many problems involve checking substrings, prefixes, or suffixes in word arrays.
GET YOUR FREE
Coding Questions Catalog
