grid47 Exploring patterns and algorithms
Sep 29, 2024
4 min read
Solution to LeetCode 387: First Unique Character in a String Problem
Given a string s, find the index of the first character that does not repeat in the string. If all characters repeat, return -1.
Problem
Approach
Steps
Complexity
Input: The input consists of a string s.
Example: s = "programming"
Constraints:
• 1 <= s.length <= 10^5
• s consists of only lowercase English letters
Output: Return the index of the first non-repeating character, or -1 if no such character exists.
Example: Output: 0
Constraints:
• The index should be within the range of the string length.
Goal: The goal is to find the first non-repeating character efficiently.
Steps:
• Create a frequency map of characters in the string.
• Traverse the string and check the frequency of each character.
• Return the index of the first character with a frequency of 1.
Goal: The algorithm should run efficiently for large inputs.
Steps:
• The time complexity should be linear, O(n).
• Space complexity should be O(n) for the frequency map.
Assumptions:
• The input string is valid and contains only lowercase English letters.
• Input: Input: "programming"
• Explanation: The character 'p' at index 0 is the first non-repeating character in the string.
Approach: The approach is to use a frequency map to count the occurrences of each character in the string, then traverse the string again to find the first character with a frequency of 1.
Observations:
• A frequency map will help us track the count of each character efficiently.
• By iterating through the string twice, once to build the frequency map and once to find the first non-repeating character, we can solve the problem in O(n) time.
Steps:
• Initialize a frequency map to store the count of each character in the string.
• Traverse the string to populate the frequency map.
• Iterate through the string again, checking the frequency map for the first character with a count of 1.
• Return the index of that character, or -1 if no such character exists.
Empty Inputs:
• The input string will always have at least one character.
Large Inputs:
• Ensure that the solution runs efficiently for strings with lengths up to 100,000.
Special Values:
• For strings where all characters repeat, return -1.
Constraints:
• Ensure that the algorithm handles edge cases efficiently.