auto commit

This commit is contained in:
CyC2018 2020-11-04 01:28:12 +08:00
parent 6c6bad677c
commit 10ecb91652
2 changed files with 20 additions and 12 deletions

View File

@ -1,10 +1,12 @@
# 50. 第一个只出现一次的字符位置 # 50. 第一个只出现一次的字符位置
[NowCoder](https://www.nowcoder.com/practice/1c82e8cf713b4bbeb2a5b31cf5b0417c?tpId=13&tqId=11187&tPage=1&rp=1&ru=/ta/coding-interviews&qru=/ta/coding-interviews/question-ranking&from=cyc_github) ## 题目链接
[牛客网](https://www.nowcoder.com/practice/1c82e8cf713b4bbeb2a5b31cf5b0417c?tpId=13&tqId=11187&tPage=1&rp=1&ru=/ta/coding-interviews&qru=/ta/coding-interviews/question-ranking&from=cyc_github)
## 题目描述 ## 题目描述
在一个字符串中找到第一个只出现一次的字符并返回它的位置 在一个字符串中找到第一个只出现一次的字符并返回它的位置字符串只包含 ASCII 码字符
``` ```
Input: abacc Input: abacc
@ -13,11 +15,13 @@ Output: b
## 解题思路 ## 解题思路
最直观的解法是使用 HashMap 对出现次数进行统计但是考虑到要统计的字符范围有限因此可以使用整型数组代替 HashMap从而将空间复杂度由 O(N) 降低为 O(1) 最直观的解法是使用 HashMap 对出现次数进行统计字符做为 key出现次数作为 value遍历字符串每次都将 key 对应的 value 1最后再遍历这个 HashMap 就可以找出出现次数为 1 的字符
考虑到要统计的字符范围有限也可以使用整型数组代替 HashMapASCII 码只有 128 个字符因此可以使用长度为 128 的整型数组来存储每个字符出现的次数
```java ```java
public int FirstNotRepeatingChar(String str) { public int FirstNotRepeatingChar(String str) {
int[] cnts = new int[256]; int[] cnts = new int[128];
for (int i = 0; i < str.length(); i++) for (int i = 0; i < str.length(); i++)
cnts[str.charAt(i)]++; cnts[str.charAt(i)]++;
for (int i = 0; i < str.length(); i++) for (int i = 0; i < str.length(); i++)
@ -31,8 +35,8 @@ public int FirstNotRepeatingChar(String str) {
```java ```java
public int FirstNotRepeatingChar2(String str) { public int FirstNotRepeatingChar2(String str) {
BitSet bs1 = new BitSet(256); BitSet bs1 = new BitSet(128);
BitSet bs2 = new BitSet(256); BitSet bs2 = new BitSet(128);
for (char c : str.toCharArray()) { for (char c : str.toCharArray()) {
if (!bs1.get(c) && !bs2.get(c)) if (!bs1.get(c) && !bs2.get(c))
bs1.set(c); // 0 0 -> 0 1 bs1.set(c); // 0 0 -> 0 1

View File

@ -1,10 +1,12 @@
# 50. 第一个只出现一次的字符位置 # 50. 第一个只出现一次的字符位置
[NowCoder](https://www.nowcoder.com/practice/1c82e8cf713b4bbeb2a5b31cf5b0417c?tpId=13&tqId=11187&tPage=1&rp=1&ru=/ta/coding-interviews&qru=/ta/coding-interviews/question-ranking&from=cyc_github) ## 题目链接
[牛客网](https://www.nowcoder.com/practice/1c82e8cf713b4bbeb2a5b31cf5b0417c?tpId=13&tqId=11187&tPage=1&rp=1&ru=/ta/coding-interviews&qru=/ta/coding-interviews/question-ranking&from=cyc_github)
## 题目描述 ## 题目描述
在一个字符串中找到第一个只出现一次的字符并返回它的位置 在一个字符串中找到第一个只出现一次的字符并返回它的位置字符串只包含 ASCII 码字符
``` ```
Input: abacc Input: abacc
@ -13,11 +15,13 @@ Output: b
## 解题思路 ## 解题思路
最直观的解法是使用 HashMap 对出现次数进行统计但是考虑到要统计的字符范围有限因此可以使用整型数组代替 HashMap从而将空间复杂度由 O(N) 降低为 O(1) 最直观的解法是使用 HashMap 对出现次数进行统计字符做为 key出现次数作为 value遍历字符串每次都将 key 对应的 value 1最后再遍历这个 HashMap 就可以找出出现次数为 1 的字符
考虑到要统计的字符范围有限也可以使用整型数组代替 HashMapASCII 码只有 128 个字符因此可以使用长度为 128 的整型数组来存储每个字符出现的次数
```java ```java
public int FirstNotRepeatingChar(String str) { public int FirstNotRepeatingChar(String str) {
int[] cnts = new int[256]; int[] cnts = new int[128];
for (int i = 0; i < str.length(); i++) for (int i = 0; i < str.length(); i++)
cnts[str.charAt(i)]++; cnts[str.charAt(i)]++;
for (int i = 0; i < str.length(); i++) for (int i = 0; i < str.length(); i++)
@ -31,8 +35,8 @@ public int FirstNotRepeatingChar(String str) {
```java ```java
public int FirstNotRepeatingChar2(String str) { public int FirstNotRepeatingChar2(String str) {
BitSet bs1 = new BitSet(256); BitSet bs1 = new BitSet(128);
BitSet bs2 = new BitSet(256); BitSet bs2 = new BitSet(128);
for (char c : str.toCharArray()) { for (char c : str.toCharArray()) {
if (!bs1.get(c) && !bs2.get(c)) if (!bs1.get(c) && !bs2.get(c))
bs1.set(c); // 0 0 -> 0 1 bs1.set(c); // 0 0 -> 0 1