Category: Reverse
-
How to reverse each word in a sentence using StringBuffer class
This is the first solution to to reverse each word in the given input line of strings. This program uses the built in reverse method of StringBuffer class.
-
How to find reverse of a float value using StringBuffer class
This is the sixth solution to find the reverse of a float value using the StringBuffer (mutable) class.
-
How to find reverse of a float value using StringBuilder class
This is the fifth solution to find the reverse of a float value using the StringBuilder (mutable) data type.
-
How to find reverse of an integer value using the core logic
This is the fourth solution to find the reverse of an integer value, by using the core logic of forming the number in the reverse order.
-
How to find reverse of an integer value using String class
This is the third solution to find the reverse of an integer value using String (immutable) class. This shows the core logic of storing the characters in reverse direction.
-
How to find reverse of an integer value using StringBuffer class
This is the second solution to find the reverse of an integer value using the StringBuffer (mutable) class.
-
How to find the reverse of an integer value using StringBuilder class
This is the first solution to find the reverse of an integer value using the StringBuilder (mutable) class type.
