Reverse Words In A String In Java October 31, 2012 String Handling Edit Reversing words in a string An example on reversing words not letters, in a string in Java. Example import java.util.*; class Re... Read More
Check If String Is Palindrome In Java February 26, 2013 String Handling Edit Let us check if the string is a palindrome in Java. The idea is common, and the implementation is simple.These few lines will check the s... Read More
Reverse Words And Letters In String December 28, 2012 String Handling Edit The following example illustrates reversing words and letters in a string. This is in fact a Google interview question and now it's sol... Read More
Compare Two Strings In Java Lexicographically April 18, 2013 java.lang, String Handling Edit The compareTo(T ob) method in the Comparable class is implemented in the String class and this implemented method takes java.lang.String... Read More
Reverse Digits Of Integer In Java December 18, 2012 java.lang Edit An easy example on reversing digits of an integer in Java using convert and do. Example import java.util.*; class ReverseDigits { ... Read More
Reverse A String In Java October 30, 2012 String Handling Edit Reversing a String An example for reversing a string in Java using reverse() method in StringBuffer with explanation. Example /... Read More
How To Reverse Elements In Array May 29, 2013 Arrays Edit The following illustrates reversing elements in an array using the common swapping technique. The logic is dead simple and is considered... Read More