What is the running time of declaring an array of size n in Java? I suppose this would depend on whether the memory is zero'ed out on garbage collection (in which case it could be O(1) ) or on initialization (in which case it'd have to be O(n) ).
|
It's
The bytecode generated is:
The instruction to take a look at is the
Since each element is being initialized, it would take EDIT Looking at the link amit provided, it is possible to implement array-initialization with a default value, in constant time. So I guess it ultimately depends on the JVM. You could do some rough benchmarking to see if this is the case. |
|||||||||||||
|
|
a small none proffessional benchmark on JRE1.6:
gave the following result:
so I assume O(n). of course, it is not enough to be sure, but it's a hint. |
|||||||||||
|
|
I am pretty sure that it is O(n), as the memory is initialized when the array is allocated. It should not be higher than O(n), and I can see no way to make it less than O(n), so that seems the only option. To elaborate further, Java initializes arrays on allocation. There is no way to zero a region of memory without walking across it, and the size of the region dictates the number of instructions. Therefore, the lower bound is O(n). Also, it would make no sense to use a zeroing algorithm slower than linear, since there is a linear solution, so the upper bound must be O(n). Therefore, O(n) is the only answer that makes sense. Just for fun, though, imagine a weird piece of hardware where the OS has control over the power to individual regions of memory and may zero a region by flipping the power off and then on. This seems like it would be O(1). But a region can only be so large before the utility disappears (wouldn't want to lose everything), so asking to zero a region will still be O(n) with a large divisor. |
|||||||||||||
|
O(1)because even if it'sO(n),nis bounded by2^31for Java arrays and thus will be asymptotically lower than some large constant. – Mark Peters Apr 12 '11 at 20:33O(1). – aioobe Apr 12 '11 at 20:50