标签: algorithm time-complexity complexity-theory
假设我们有以下内容:
for(int i = 0; i < n; i++) { if ( ... ) { ... } if ( ... ) { ... } if ( ... ) { ... } if ( ... ) { ... } }
它的时间复杂度是什么?为什么?
我以为是O(n ^ O(4) )?
O(n ^ O(4) )