Categories
- Database (10)
- delicious (14)
- health&beauty (4)
- java (18)
- DataStructures (4)
- Sorting&Searching (1)
- Strings (1)
- JavaScript (6)
- MS (3)
- my holiday trips (3)
- Other (5)
- Testing (1)
Archives
-
Recent Posts
-
Blog Stats
- 77,038 hits
blog roll
Category Archives: Strings
Optimized String Reverse Algorithm…
package com.test.stringOps; public class StringReverse { public static String reverse(String str) { if (str == null || str.length() == 0) { return str; } else { StringBuilder bul = new StringBuilder(str); for(int i=0,j=bul.length()-1;i char c=bul.charAt(i); bul.setCharAt(i, bul.charAt(j)); bul.setCharAt(j, c); } … Continue reading
Posted in Strings
Leave a comment