I am needing to process a large amount of data in arrays with perl. At certain points, I will need to insert the values of a second array within a primary array. I have seen that splice should normally be the way to go. However, after having researched a bit, I have seen that this function is memory intensive and over time could provoke a serious performance issue.
Here is basically what I am needing to do -
# two arrays
@primary = [1, 2, 3, 4, 5, 6, 7, 8, 9];
@second = [a, b, c, d e];
Now insert the contents of @second into @primary at offset 4 to obtain -
@primary = [1, 2, 3, 4, a, b, c, d, e, 5, 6, 7, 8, 9];
Would using linked lists be the most efficent way to go when I have to handle a primary array which holds more than 2000 elements ?
Note: can anyone confirm that this is the correct way to do it :
$Tail = splice($primary, 4);
push(@primary, @second, $Tail);