LinQH
Results
3
comments of
LinQH
我这边也有相同的问题,请问要怎么解决
// 有序数组去重,返回新数组长度 private int removeDuplicates(int A[]) { int i = 0; // 第一个指针 int j; // 第二个指针 int n = A.length; if (n