vote up 3 vote down star
2

Is there a built in function in .Net 2.0 that will take two arrays and merge them into one array? The arrays are both of the same type. I'm getting these arrays from a widely used function within my code base and can't modify the function to return the data in a different format.

I'm looking to avoid writing my own function to accomplish this if possible.

flag

6 Answers

vote up 6 vote down check

If you can manipulate one of the arrays, you can resize it before performing the copy:

T[] array1 = getOneArray();
T[] array2 = getAnotherArray();
int array1OriginalLength = array1.Length;
Array<T>.Resize(array1, array1OriginalLength + array2.Length);
Array.Copy(array2, 0, array1, array1OriginalLength, array2.Length);

Otherwise, you can make a new array

T[] array1 = getOneArray();
T[] array2 = getAnotherArray();
T[] newArray = new T[array1.Length + array2.Length];
Array.Copy(array1, 0, newArray);
Array.Copy(array2, 0, newArray, array1.Length, array2.Length);

More on available Array methods on MSDN.

link|flag
Just realized, you have to save the length of the first array in a separate variable before resizing. – kbrinley Sep 12 '08 at 21:26
Right! Foolish of me. That's what I get for supplying code I've not run... – Blair Conrad Sep 13 '08 at 0:47
vote up 11 vote down

In C# 3.0 you can use LINQ to accomplish this easily:

int[] front = { 1, 2, 3, 4 };
int[] back = { 5, 6, 7, 8 };
int[] combined = front.Concat(back).ToArray();

In C# 2.0 you don't have such a direct way, but Array.Copy is probably the best solution:

int[] front = { 1, 2, 3, 4 };
int[] back = { 5, 6, 7, 8 };

int[] combined = new int[front.Length + back.Length]; Array.Copy(front, combined, front.Length); Array.Copy(back, 0, combined, front.Length, back.Length);

This could be easily used to implement your own version of Concat.

link|flag
I like that LINQ implementation. I really need to make the jump and get into LINQ soon... – Rich B Sep 12 '08 at 15:20
Rich, the best part about the LINQ implementation is not only is it concise, it's also just as efficient as the 2.0 version, since it works against IEnumerable. – Brad Wilson Sep 12 '08 at 23:13
+1, .Concat really helped me out. – tsilb Oct 26 at 4:06
vote up 1 vote down

First, make sure you ask yourself the question "Should I really be using an Array here"?

Unless you're building something where speed is of the utmost importance, a typed List, like List is probably the way to go. The only time I ever use arrays are for byte arrays when sending stuff over the network. Other than that, I never touch them.

link|flag
vote up 0 vote down

I'm assuming you're using your own array types as opposed to the built-in .NET arrays:


public string[] merge(input1, input2){
  string[] output = new string[input1.length + input2.length];
  for(int i = 0; i = input1.length)
      {
          output[i] = input2[i-input1.length];
      }
      else{
          output[i] = input1[i];
      }
   }
   return output;
}

NOTE: Due to an error with the <pre> tag, the if (i >= input1.length) doesn't show up. It should be above the output[i] = input2[i-input1.length]
Another way of doing this would be using the built in ArrayList class.

public ArrayList merge(input1, input2){
   Arraylist output = new ArrayList();
   foreach(string val in input1){
      output.add(val);
   }
   foreach(string val in input2){
      output.add(val);
   }
return output;
}

Both examples are C#.

link|flag
vote up 1 vote down

Assuming the destination array has enough space, Array.Copy() will work. You might also try using a List and it's .AddRange() method.

link|flag
vote up 4 vote down

I think you can use Array.Copy for this. It takes a source index and destination index so you should be able to append the one array to the other. If you need to go more complex than just appending one to the other, this may not be the right tool for you.

link|flag

Your Answer

Get an OpenID
or

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