标签:
在一个字符串(1<=字符串长度<=10000,全部由大小写字母组成)中找到第一个只出现一次的字符,并返回它的位置
import java.util.LinkedHashMap; public class Solution { public int FirstNotRepeatingChar(String str) { LinkedHashMap<Character, Integer> map = new LinkedHashMap<Character, Integer>(); for (int i = 0; i < str.length(); i++) { if (map.containsKey(str.charAt(i))) { int time = map.get(str.charAt(i)); map.put(str.charAt(i), ++time); } else { map.put(str.charAt(i), 1); } } for (int i = 0; i < str.length(); i++) { char c = str.charAt(i); if (map.get(c) == 1) { return i; } } return -1; } }
标签:
原文地址:http://www.cnblogs.com/SaraMoring/p/5840310.html