JZ-034-第一個只出現一次的字元位置

雄獅虎豹發表於2021-12-29

第一個只出現一次的字元位置

題目描述

在一個字串(0<=字串長度<=10000,全部由字母組成)中找到第一個只出現一次的字元,並返回它的位置, 如果沒有則返回 -1(需要區分大小寫).(從0開始計數)

題目連結: 第一個只出現一次的字元位置

程式碼

/**
 * 標題:第一個只出現一次的字元位置
 * 題目描述
 * 在一個字串(0<=字串長度<=10000,全部由字母組成)中找到第一個只出現一次的字元,並返回它的位置, 如果沒有則返回 -1(需要區分大小寫).(從0開始計數)
 * 題目連結:
 * https://www.nowcoder.com/practice/1c82e8cf713b4bbeb2a5b31cf5b0417c?tpId=13&&tqId=11187&rp=1&ru=/ta/coding-interviews&qru=/ta/coding-interviews/question-ranking
 */
public class Jz34 {

    /**
     * 字串遍歷
     *
     * @param str
     * @return
     */
    public int firstNotRepeatingChar(String str) {
        int[] cnts = new int[256];
        for (int i = 0; i < str.length(); i++) {
            cnts[str.charAt(i)]++;
        }
        for (int i = 0; i < str.length(); i++) {
            if (cnts[str.charAt(i)] == 1) {
                return i;
            }
        }
        return -1;
    }

    public static void main(String[] args) {

    }
}
【每日寄語】 能堅持別人不能堅持的,才能擁有別人不能擁有的。

相關文章