Check for Palindrome

Dear Sciaku Learner you are not logged in or not enrolled in this course.

Please Click on login or enroll now button.

If you have any query feel free to chat us!

Happy Coding! Happy Learning!

Lecture 59:-  Check for Palindrome

To check if a string is a palindrome, you need to verify whether it reads the same forward and backward. In other words, the characters of the string should be the same when read from left to right and from right to left. Here's a Java method to check for a palindrome:

javaCopy code
public class PalindromeChecker { public static boolean isPalindrome(String str) { // Remove spaces and convert the string to lowercase str = str.replaceAll("\\s", "").toLowerCase(); // Initialize pointers for the first and last characters int left = 0; int right = str.length() - 1; // Compare characters from both ends until the pointers meet while (left < right) { if (str.charAt(left) != str.charAt(right)) { return false; } left++; right--; } return true; } public static void main(String[] args) { String str1 = "racecar"; String str2 = "hello"; if (isPalindrome(str1)) { System.out.println(str1 + " is a palindrome."); } else { System.out.println(str1 + " is not a palindrome."); } if (isPalindrome(str2)) { System.out.println(str2 + " is a palindrome."); } else { System.out.println(str2 + " is not a palindrome."); } } }

In this example, we have a method isPalindrome that takes a string str as input and returns true if it is a palindrome, and false otherwise. The method first removes spaces and converts the string to lowercase using the replaceAll() and toLowerCase() methods.

We then initialize two pointers left and right, pointing to the first and last characters of the string, respectively. We compare the characters at these pointers, and if they are not the same, we return false.

The comparison continues until the pointers meet in the middle of the string. If all characters are the same during the comparison, the string is a palindrome, and we return true.

In the main method, we test the isPalindrome method with two sample strings. If a string is a palindrome, it will print "<string> is a palindrome." Otherwise, it will print "<string> is not a palindrome."

Example output:

csharpCopy code
racecar is a palindrome. hello is not a palindrome.


Disclaimer:-

Under Section 107 of the copyright act 1976, allowance is made for fair use for purposes such as criticism, comment, news reporting, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational, or personal use tips the balance in favor of fair use.

 

9. Strings

Comments: 0

Frequently Asked Questions (FAQs)

How do I register on Sciaku.com?
How can I enroll in a course on Sciaku.com?
Are there free courses available on Sciaku.com?
How do I purchase a paid course on Sciaku.com?
What payment methods are accepted on Sciaku.com?
How will I access the course content after purchasing a course?
How long do I have access to a purchased course on Sciaku.com?
How do I contact the admin for assistance or support?
Can I get a refund for a course I've purchased?
How does the admin grant access to a course after payment?