仓库源文站点原文


title: '算法:第一个只出现一次的字符位置' cover: https://img.paulzzh.com/touhou/random?43 categories: 算法题目 date: 1996-07-27 08:00:00 toc: true

tags: [算法题目, 字符串]

<br/>

<!--more-->

第一个只出现一次的字符位置

第一个只出现一次的字符位置

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

(需要区分大小写)


分析

第一遍遍历, 记录每个字符出现的次数;

第二次遍历, 寻找第一个出现一次的;


代码

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