auto commit

This commit is contained in:
CyC2018 2020-11-04 02:02:10 +08:00
parent 164e9a954d
commit 52a5ce456f
4 changed files with 22 additions and 6 deletions

View File

@ -1,6 +1,8 @@
# 41.1 数据流中的中位数
[NowCoder](https://www.nowcoder.com/practice/9be0172896bd43948f8a32fb954e1be1?tpId=13&tqId=11216&tPage=1&rp=1&ru=/ta/coding-interviews&qru=/ta/coding-interviews/question-ranking&from=cyc_github)
## 题目链接
[牛客网](https://www.nowcoder.com/practice/9be0172896bd43948f8a32fb954e1be1?tpId=13&tqId=11216&tPage=1&rp=1&ru=/ta/coding-interviews&qru=/ta/coding-interviews/question-ranking&from=cyc_github)
## 题目描述

View File

@ -1,6 +1,8 @@
# 41.2 字符流中第一个不重复的字符
[NowCoder](https://www.nowcoder.com/practice/00de97733b8e4f97a3fb5c680ee10720?tpId=13&tqId=11207&tPage=1&rp=1&ru=/ta/coding-interviews&qru=/ta/coding-interviews/question-ranking&from=cyc_github)
## 题目描述
[牛客网](https://www.nowcoder.com/practice/00de97733b8e4f97a3fb5c680ee10720?tpId=13&tqId=11207&tPage=1&rp=1&ru=/ta/coding-interviews&qru=/ta/coding-interviews/question-ranking&from=cyc_github)
## 题目描述
@ -8,8 +10,12 @@
## 解题思路
使用统计数组来统计每个字符出现的次数本题涉及到的字符为都为 ASCII 因此使用一个大小为 128 的整型数组就能完成次数统计任务
使用队列来存储到达的字符并在每次有新的字符从字符流到达时移除队列头部那些出现次数不再是一次的元素因为队列是先进先出顺序因此队列头部的元素为第一次只出现一次的字符
```java
private int[] cnts = new int[256];
private int[] cnts = new int[128];
private Queue<Character> queue = new LinkedList<>();
public void Insert(char ch) {

View File

@ -1,6 +1,8 @@
# 41.1 数据流中的中位数
[NowCoder](https://www.nowcoder.com/practice/9be0172896bd43948f8a32fb954e1be1?tpId=13&tqId=11216&tPage=1&rp=1&ru=/ta/coding-interviews&qru=/ta/coding-interviews/question-ranking&from=cyc_github)
## 题目链接
[牛客网](https://www.nowcoder.com/practice/9be0172896bd43948f8a32fb954e1be1?tpId=13&tqId=11216&tPage=1&rp=1&ru=/ta/coding-interviews&qru=/ta/coding-interviews/question-ranking&from=cyc_github)
## 题目描述

View File

@ -1,6 +1,8 @@
# 41.2 字符流中第一个不重复的字符
[NowCoder](https://www.nowcoder.com/practice/00de97733b8e4f97a3fb5c680ee10720?tpId=13&tqId=11207&tPage=1&rp=1&ru=/ta/coding-interviews&qru=/ta/coding-interviews/question-ranking&from=cyc_github)
## 题目描述
[牛客网](https://www.nowcoder.com/practice/00de97733b8e4f97a3fb5c680ee10720?tpId=13&tqId=11207&tPage=1&rp=1&ru=/ta/coding-interviews&qru=/ta/coding-interviews/question-ranking&from=cyc_github)
## 题目描述
@ -8,8 +10,12 @@
## 解题思路
使用统计数组来统计每个字符出现的次数本题涉及到的字符为都为 ASCII 因此使用一个大小为 128 的整型数组就能完成次数统计任务
使用队列来存储到达的字符并在每次有新的字符从字符流到达时移除队列头部那些出现次数不再是一次的元素因为队列是先进先出顺序因此队列头部的元素为第一次只出现一次的字符
```java
private int[] cnts = new int[256];
private int[] cnts = new int[128];
private Queue<Character> queue = new LinkedList<>();
public void Insert(char ch) {