pl指针指向找到相同的字母的下一位例如:abcbapl:1 5 import java.util.*; public class Solution { /** * * @param arr int整型一维数组 the array * @return int整型 */ public int maxLength (int[] arr) { // write code here HashSet set = new HashSet<Integer>(); int pl = 0; ...