标签: asymptotic-complexity
这些嵌套for循环的复杂性是什么:
for(int p=2; p<=LENGTH; p++){ for(int i=1; i*p <= LENGTH; i++) { //some code } }