- <DIV class="line alt1" style="BORDER-LEFT-WIDTH: 0px !important; HEIGHT: auto !important; BORDER-RIGHT-WIDTH: 0px !important; VERTICAL-ALIGN: baseline !important; BACKGROUND-IMAGE: none; WHITE-SPACE: normal; BORDER-BOTTOM-WIDTH: 0px !important; RIGHT: auto !important; POSITION: static !important; TEXT-TRANSFORM: none; WORD-SPACING: 0px; FLOAT: none !important; COLOR: rgb(0,0,0); OUTLINE-WIDTH: 0px !important; PADDING-BOTTOM: 0px !important; TEXT-ALIGN: left; PADDING-TOP: 0px !important; FONT: 13px/14px Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace; PADDING-LEFT: 0px !important; LEFT: auto !important; MARGIN: 0px; ORPHANS: 2; WIDOWS: 2; LETTER-SPACING: normal; OUTLINE-COLOR: !important; TOP: auto !important; PADDING-RIGHT: 0px !important; BORDER-TOP-WIDTH: 0px !important; WIDTH: auto !important; BOTTOM: auto !important; BACKGROUND-COLOR: rgb(255,255,255); TEXT-INDENT: 0px; -webkit-text-size-adjust: auto; border-image: initial; background-origin: initial; background-clip: initial; -webkit-text-stroke-width: 0px">
- <DIV class=blockcode>
- <BLOCKQUOTE>import java.util.Stack;
- public class StringReverse {
- public static String reverse1(String s) {
- int length = s.length();
- if (length <= 1)
- eturn s;
- String left = s.substring(0, length / 2);
- String right = s.substring(length / 2, length);
- return reverse1(right) + reverse1(left);
- }
- public static String reverse2(String s) {
- int length = s.length();
- String reverse = "";
- for (int i = 0; i < length; i++)
- reverse = s.charAt(i) + reverse;
- return reverse;
- }
- public static String reverse3(String s) {
- char[] array = s.toCharArray();
- String reverse = "";
- for (int i = array.length - 1; i >= 0; i--)
- reverse += array[i];
- return reverse;
- }
- public static String reverse4(String s) {
- return new StringBuffer(s).reverse().toString();
- }
- public static String reverse5(String orig) {
- char[] s = orig.toCharArray();
- int n = s.length - 1;
- int halfLength = n / 2;
- char temp = s[i];
- s[i] = s[n - i];
- s[n - i] = temp;
- }
- return new String(s);
- }
- public static String reverse6(String s) {
- char[] str = s.toCharArray();
- int begin = 0;
- int end = s.length() - 1;
- while (begin < end) {
- str[begin] = (char) (str[begin] ^ str[end]);
- str[end] = (char) (str[begin] ^ str[end]);
- str[begin] = (char) (str[end] ^ str[begin]);
- begin++;
- end--;
- }
- return new String(str);
- }
- public static String reverse7(String s) {
- char[] str = s.toCharArray();
- Stack<Character> stack = new Stack<Character>();
- for (int i = 0; i < str.length; i++)
- stack.push(str[i]);
- String reversed = "";
- for (int i = 0; i < str.length; i++)
- reversed += stack.pop();
- return reversed;
- }
- }
复制代码
|
|