HashMap
如果数组足够大时,而且数据比较分散的时候可以用HashMap来做,这样可以方便很多。
而且也可以拓展为不重复的字符串,因为HashMap可以存各种各样的东西。
Java 代码
import java.util.Scanner;
import java.util.HashMap;
import java.util.Map;
public class Main {
public static void main (String[] args) {
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
int [] a = new int[n];
Map<Integer, Integer> map = new HashMap<>();
for (int i = 0; i < n; i++) {
a[i] = sc.nextInt();
}
int res = 0;
for (int i = 0, j = 0; i < n; i++) {
map.put(a[i], map.getOrDefault(a[i], 0) + 1); //如果没有放入则设为0
while (map.get(a[i]) > 1) {
//按照模版,while中进行j++的循环
map.put(a[j], map.get(a[j]) - 1);
j++;
}
res = Math.max(res, i - j + 1);
}
System.out.println(res);
}
}
没有放入则设为0是什么意思呀
第一次不都应该添加吗
1、它是个循环
2、第一要设置初始值,设置为0