标签: time-complexity
难以理解以下内容的时间复杂度。
//数组a以非降序排序。 int j = 0;
for(int i=0;i<n;i++) { while(j<n && a[j]-a[i]<=10) { ++j; ans=max(ans,j-i); } }