Palindrome Check in O(n) Time Complexity using JavaScript
Given a string, determine if it is a palindrome.
A palindrome is a word, number, phrase, or other sequence of characters which reads the same backward as forward
Example 1:
Input: "madam racecar madam" Output: true
Example 2:
Input: "abcbx" Output: false
Note:
Your algorithm should run in O(n) time and use O(1) extra space.
Problem Definition
The problem requires us to determine if a given string is a palindrome. A palindrome is a sequence of characters that reads the same backward as forward.
Input: A string s.
Output: A boolean value true if the string is a palindrome, otherwise false.
Constraints:
- The algorithm should run in O(n) time complexity.
- The algorithm should use O(1) extra space.
Example:
Input: "madam racecar madam" Output: true
Input: "abcbx" Output: false
Understanding the Problem
The core challenge is to check if the string reads the same backward as forward. This problem is significant in various applications such as text processing, data validation, and more. A common pitfall is to overlook the need for an efficient solution that runs in linear time and uses constant space.
Approach
To solve this problem, we can use a two-pointer technique:
- Initialize two pointers, one at the beginning and one at the end of the string.
- Compare the characters at these pointers.
- If the characters are not equal, return false.
- Move the pointers towards the center of the string.
- If all characters match, return true.
This approach ensures that we only traverse the string once, achieving O(n) time complexity, and we use only a few extra variables, achieving O(1) space complexity.
Algorithm
Here is a step-by-step breakdown of the algorithm:
- Initialize two pointers,
iat the start (0) andjat the end (n-1) of the string. - While
iis less thanj:- Check if
s[i]is not equal tos[j]. If true, return false. - Increment
iand decrementj.
- Check if
- If the loop completes without returning false, return true.
Code Implementation
/**
* Function to check if a given string is a palindrome.
* @param {string} s - The input string.
* @return {boolean} - Returns true if the string is a palindrome, otherwise false.
*/
function isPalindrome(s) {
// Initialize two pointers
let i = 0;
let j = s.length - 1;
// Loop until the pointers meet in the middle
while (i < j) {
// If characters at the pointers do not match, return false
if (s[i] !== s[j]) {
return false;
}
// Move the pointers towards the center
i++;
j--;
}
// If all characters matched, return true
return true;
}
// Example usage:
console.log(isPalindrome("madam racecar madam")); // Output: true
console.log(isPalindrome("abcbx")); // Output: false
Complexity Analysis
Time Complexity: O(n), where n is the length of the string. We traverse the string once.
Space Complexity: O(1), as we use only a few extra variables.
Edge Cases
Consider the following edge cases:
- Empty string: Should return true.
- Single character string: Should return true.
- Strings with special characters and spaces: Ensure the algorithm handles them correctly.
Input: "" Output: true
Input: "a" Output: true
Testing
To test the solution comprehensively, consider a variety of test cases:
- Simple palindromes: "madam", "racecar"
- Non-palindromes: "hello", "world"
- Edge cases: "", "a", "ab"
Use testing frameworks like Jest or Mocha for automated testing.
Thinking and Problem-Solving Tips
When approaching such problems:
- Understand the problem requirements and constraints.
- Think about different approaches and their trade-offs.
- Start with a simple solution and optimize it.
- Practice similar problems to improve problem-solving skills.
Conclusion
In this blog post, we discussed how to determine if a string is a palindrome using a two-pointer technique. We covered the problem definition, approach, algorithm, code implementation, complexity analysis, edge cases, and testing. Understanding and solving such problems is crucial for improving algorithmic thinking and coding skills.
Additional Resources
For further reading and practice: