mirror of
https://github.com/TheAlgorithms/Java.git
synced 2025-07-20 18:24:49 +08:00

* refactor: ReverseString * refactor: refactor testing into two methods * checkstyle: fix formatting * checkstyle: fix formatting --------- Co-authored-by: alxkm <alx@alx.com>
40 lines
963 B
Java
40 lines
963 B
Java
package com.thealgorithms.strings;
|
|
|
|
/**
|
|
* Reverse String using different version
|
|
*/
|
|
public final class ReverseString {
|
|
private ReverseString() {
|
|
}
|
|
|
|
/**
|
|
* easiest way to reverses the string str and returns it
|
|
*
|
|
* @param str string to be reversed
|
|
* @return reversed string
|
|
*/
|
|
public static String reverse(String str) {
|
|
return new StringBuilder(str).reverse().toString();
|
|
}
|
|
|
|
/**
|
|
* second way to reverses the string str and returns it
|
|
*
|
|
* @param str string to be reversed
|
|
* @return reversed string
|
|
*/
|
|
public static String reverse2(String str) {
|
|
if (str == null || str.isEmpty()) {
|
|
return str;
|
|
}
|
|
|
|
char[] value = str.toCharArray();
|
|
for (int i = 0, j = str.length() - 1; i < j; i++, j--) {
|
|
char temp = value[i];
|
|
value[i] = value[j];
|
|
value[j] = temp;
|
|
}
|
|
return new String(value);
|
|
}
|
|
}
|