赞
踩
在一个字符串(0<=字符串长度<=10000,全部由字母组成)中找到第一个只出现一次的字符,并返回它的位置, 如果没有则返回 -1(需要区分大小写).
class Solution { public char firstUniqChar(String s) { int n = s.length(); if(n==0){ return ' '; } int[] count = new int[26]; for(char ch : s.toCharArray()){ int i = ch - 'a'; count[i]++; } for(char ch : s.toCharArray()){ int i = ch - 'a'; if(count[i]==1){ return ch;
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。