代码1 while (p < a.length && q < c.length) { if (a[p] < b[i]) { p++; } if (c[q] <= b[i]) { q++; } } 代码2 while (p < a.length && a[p] < b[i]) ...