摘要: // 使用hash表 public static char getFirstNotRepeat(char[] arr) { if (arr == null || arr.length == 0) { return '\0'; } int tableSize = 256; // 简单的hash表 in 阅读全文
posted @ 2018-01-20 21:39 qingtianBKY 阅读(91) 评论(0) 推荐(0) 编辑