Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

My question is simple.

System.arraycopy(Object src, int srcPos, Object dest, int destPos, int length) is a native method.

What is the time complexity for this method?

share|improve this question
any reference to the complexity is appreciable. – Kowser Aug 23 '11 at 18:44
Please also refer to stackoverflow.com/questions/2772152/… – Alvin Wong Jan 10 at 14:12

2 Answers

up vote 9 down vote accepted

It will have to go through all the elements in the array to do this. Array is a unique data structure where you have to specify a size when you initialize it. Order would be the source array's size or in Big O terms its O(length).

Infact this happens internally in an ArrayList. ArrayList wraps an array. Although ArrayList looks like a dynamically growing collection, internally it does an arrycopy when it has to expand.

share|improve this answer
depends on what you pass in for length - why would this be O(n)? – BrokenGlass Aug 23 '11 at 18:14
4  
O(n) is close enough, but actually I think it will just be O(length), i.e. the length to be copied, not the length of the source array. – Robert Harvey Aug 23 '11 at 18:15
Just wondering if there is any special method call, which can reduce this time complexity. – Kowser Aug 23 '11 at 18:16
4  
@alex c - can you show an example of a conversion from int to string? I don't think arraycopy does any conversion, not according the documentation: Otherwise, if any of the following is true, an ArrayStoreException is thrown ... °The src argument refers to an array with a primitive component type and the dest argument refers to an array with a reference component type °... – Carlos Heuberger Aug 23 '11 at 18:38
1  
@bragboy: posted an answer on my investigation. – Kowser Aug 25 '11 at 3:49
show 6 more comments

I did some investigation and later decided to write a test code, here is what I have.

My testing code is given below:

import org.junit.Test;

public class ArrayCopyTest {

  @Test
  public void testCopy() {
    for (int count = 0; count < 3; count++) {
      int size = 0x00ffffff;
      long start, end;
      Integer[] integers = new Integer[size];
      Integer[] loopCopy = new Integer[size];
      Integer[] systemCopy = new Integer[size];

      for (int i = 0; i < size; i++) {
        integers[i] = i;
      }

      start = System.currentTimeMillis();
      for (int i = 0; i < size; i++) {
        loopCopy[i] = integers[i];
      }
      end = System.currentTimeMillis();
      System.out.println("for loop: " + (end - start));

      start = System.currentTimeMillis();
      System.arraycopy(integers, 0, systemCopy, 0, size);
      end = System.currentTimeMillis();
      System.out.println("System.arrayCopy: " + (end - start));
    }
  }

}

It produces result shown below

for loop: 47
System.arrayCopy: 24

for loop: 31
System.arrayCopy: 22

for loop: 36
System.arrayCopy: 22

So, Bragboy is correct.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.