Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update pallindrome.java #1

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
69 changes: 29 additions & 40 deletions Java_Programs_for_beginners/pallindrome.java
Original file line number Diff line number Diff line change
@@ -1,40 +1,29 @@

public class Pallindrome {

// Function that returns true if
// str is a palindrome
static boolean isPalindrome(String str)
{

// Pointers pointing to the beginning
// and the end of the string
int i = 0, j = str.length() - 1;

// While there are characters toc compare
while (i < j) {

// If there is a mismatch
if (str.charAt(i) != str.charAt(j))
return false;

// Increment first pointer and
// decrement the other
i++;
j--;
}

// Given string is a palindrome
return true;
}

// Driver code
public static void main(String[] args)
{
String str = "TATA";

if (isPalindrome(str))
System.out.print("Yes");
else
System.out.print("No");
}
}
public class Palindrome {
// Function to check if a string is a palindrome using recursion
static boolean isPalindrome(String str) {
// Base case: If the string is empty or has only one character, it's a palindrome
if (str.length() <= 1) {
return true;
}

// Compare the first and last characters of the string
if (str.charAt(0) == str.charAt(str.length() - 1)) {
// If they match, check the substring between the first and last characters
// by recursively calling isPalindrome on the substring
return isPalindrome(str.substring(1, str.length() - 1));
}

// If the first and last characters don't match, the string is not a palindrome
return false;
}

public static void main(String[] args) {
String str = "racecar"; // Change this string as needed

if (isPalindrome(str)) {
System.out.print("Yes, it's a palindrome.");
} else {
System.out.print("No, it's not a palindrome.");
}
}
}