码迷,mamicode.com
首页 > 其他好文 > 详细

第一个只出现一次的字符

时间:2020-02-24 14:50:15      阅读:58      评论:0      收藏:0      [点我收藏+]

标签:not   空间复杂度   return   大小写   字符串长度   string   长度   eating   code   

题目描述

在一个字符串(0<=字符串长度<=10000,全部由字母组成)中找到第一个只出现一次的字符,并返回它的位置, 如果没有则返回 -1(需要区分大小写).

思路

桶计数。
时间复杂度O(n),空间复杂度O(1)。

代码

public class Solution {
    public int FirstNotRepeatingChar(String str) {
        if(str == null || str.length() == 0)    return -1;
        int[] map = new int[256];
        for(int i = 0; i < str.length(); i++) {
            map[str.charAt(i)]++;
        }
        for(int i = 0; i < str.length(); i++) {
            if(map[str.charAt(i)] == 1) {
                return i;
            }
        }
        return -1;
    }
}

第一个只出现一次的字符

标签:not   空间复杂度   return   大小写   字符串长度   string   长度   eating   code   

原文地址:https://www.cnblogs.com/ustca/p/12356786.html

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