我想檢查一下我對Big-O符號的理解。如果我有代碼:大O符號檢查理解
for(int bound = 1; bound <= n; bound *= 2){
for(int i = 0; i < bound; i++) {
for(int j = 0; j < n; j += 2){
.....Code
}
for(int j = 1; j < n; j *= 2){
......Code
}
}
}
是這款N 大O符號?
*你認爲什麼?請分享你的想法。 – Maroun 2014-10-31 16:27:20
「for(int j = 0; j
2014-10-31 16:29:27
@markusmalkusch的確。我問他之後。 – Maroun 2014-10-31 17:02:52