+ 1
Arrays in C++
Which one's faster: Iterating through two char arrays containing four elements each, or iterating through one char array containing eight elements. My question is in the context of C++.
1 Resposta
+ 2
Both are O(n) time complexty, it dose not really matter...