码迷,mamicode.com
首页 > 编程语言 > 详细

java实现——035第一个只出现一次的字符

时间:2014-05-08 10:38:54      阅读:346      评论:0      收藏:0      [点我收藏+]

标签:style   blog   class   code   java   color   

bubuko.com,布布扣
 1 import java.util.Hashtable;
 2 
 3 public class T035 {
 4     public static void main(String[] args) {
 5         FirstNotRepeatingChar("abaccdeff");
 6     }
 7 
 8     public static char FirstNotRepeatingChar(String pString) {
 9         Hashtable t = new Hashtable();
10         int tableSize = 256;
11         for (int i = 0; i < tableSize; i++) {
12             t.put(i, 0);
13         }
14 
15         for (int i = 0; i < pString.length(); i++) {
16             int key = pString.charAt(i);
17             int value = (Integer) t.get(key);
18             t.remove(key);
19             t.put(key, ++value);
20         }
21         int i;
22         for (i = 0; i < pString.length(); i++) {
23             int key = pString.charAt(i);
24             int value = (Integer) t.get(key);
25             if (value == 1) {
26                 System.out.println(pString.charAt(i));
27                 break;
28             }
29         }
30         if (i == pString.length()) {
31             System.out.println("none");
32         }
33         return 0;
34     }
35 }


bubuko.com,布布扣

 

java实现——035第一个只出现一次的字符,布布扣,bubuko.com

java实现——035第一个只出现一次的字符

标签:style   blog   class   code   java   color   

原文地址:http://www.cnblogs.com/thehappyyouth/p/3714196.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!