Add palindrome (#28)

* Add palindrome java

* Update paindrome.java
pull/30/head
Amisha Mohapatra 2021-01-24 23:44:58 +05:30 committed by GitHub
parent 440cb9b27a
commit c5538df596
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 43 additions and 0 deletions

View File

@ -12,3 +12,7 @@ You could use any online IDE (for an example [.net Finddle](https://dotnetfiddle
### JavaScript ### JavaScript
1. [Palindrome Check](js/palindrome.js) 1. [Palindrome Check](js/palindrome.js)
### Java
1. [Palindrome Check](java/palindrome.java)

View File

@ -0,0 +1,39 @@
public class Algorithm {
// 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 = "geeks";
if (isPalindrome(str))
System.out.print("Yes");
else
System.out.print("No");
}
}