
CCI
主的器皿
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
CCI习题 1-2:Reverse String
package question1_2; public class Question { public static String reverseString(String str){ if(str.equals(null)){ return null ; } StringBuffer sBuffer=new StringBuffer(str); String strResu原创 2012-12-24 11:14:48 · 584 阅读 · 0 评论 -
CCI习题1-1:String Contain Unique Char
package question1_1; /* * Implement an algorithm to determine if a string has all unique characters */ public class Question { //位操作 public static boolean isUniqueChars1(String str){ if(s原创 2012-12-21 16:22:48 · 944 阅读 · 0 评论