Problem Description
Implement an HTML entity parser that takes a string input containing HTML code and replaces all specified HTML entities with their corresponding special characters.
Key Insights
- The problem involves recognizing specific HTML entities and replacing them with their respective characters.
- Only a limited set of entities need to be processed, which simplifies the parsing logic.
- The input string can contain other characters that are not entities, and these should remain unchanged.
Space and Time Complexity
Time Complexity: O(n), where n is the length of the input string, since we scan through the string once. Space Complexity: O(1), if we consider the output space as part of the input. Otherwise, O(n) if we count the space for the output string separately.
Solution
The solution utilizes a single pass through the input string, checking for occurrences of HTML entities using a hashmap (or dictionary) to map entities to their corresponding characters. As we iterate through the string, we can build the output string by replacing recognized entities while keeping track of characters that do not correspond to any entities.