first-unique-character-in-a-string
Posted 笨鸟居士的博客
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了first-unique-character-in-a-string相关的知识,希望对你有一定的参考价值。
https://leetcode.com/problems/first-unique-character-in-a-string/ public class Solution { public int firstUniqChar(String s) { int[] index = new int[26]; for (int i=0; i<s.length(); i++) { int ch = s.charAt(i) - ‘a‘; if (index[ch] == 0) { index[ch] = i + 1; } else if (index[ch] > 0) { index[ch] = -1; } } int ret = s.length() + 1; for (int i=0; i<26; i++) { if (index[i] > 0 && index[i] < ret) { ret = index[i]; } } if (ret == s.length() + 1) { return -1; } else { return ret - 1; } } }
以上是关于first-unique-character-in-a-string的主要内容,如果未能解决你的问题,请参考以下文章