Concatenating an element x to an array items is easy in D, it's as if it were an array list:

arr ~= x;

but how do I remove an element at index i from items?

(Caveat: If I remove an element and then add a new element, the array must not be reallocated. So a simple slice won't work.)


Update:

Based on CyberShadow's answer about using assumeSafeAppend, I wrote this code:

static void removeAt(T)(ref T[] arr, size_t index)
{
    foreach (i, ref item; arr[index .. $ - 1])
        item = arr[i + 1];
    arr = arr[0 .. $ - 1];
    arr.assumeSafeAppend();
}

However, the problem happens when you have something like:

auto superArr = [0, 1, 2, 3, 4]; //Must not be modified
auto arr = superArr[0 .. $ - 1];
writeln(superArr);
arr.removeAt(0);    //Should copy the slice and modify the copy
writeln(superArr);  //but obviously doesn't

The base array of slice should not be modified if an element is removed from the slice; instead, the slice needs to be copied.

But I have no way of knowing if an array is a slice of a bigger array... so that doesn't work.

Any suggestions?

link|improve this question

Updated my answer with regards to your edit. – CyberShadow May 16 '11 at 19:32
@CyberShadow: That is so hacky, but I'll use it anyway. xD Thanks! – Mehrdad May 16 '11 at 19:33
@CyberShadow: Wait, actually, I just tried that and it didn't seem to work... are you sure that's what it does? – Mehrdad May 16 '11 at 19:37
Works for me, but (as I just realized) it won't work if the slice is at the end of the array... never mind :/ – CyberShadow May 16 '11 at 19:38
1  
@CyberShadow: Oohh I see... argh, this is a lot uglier than I thought... :\ – Mehrdad May 16 '11 at 19:50
show 4 more comments
feedback

4 Answers

up vote 6 down vote accepted

(Caveat: If I remove an element and then add a new element, the array must not be reallocated. So a simple slice won't work.)

You cannot do this with built-in arrays. Otherwise, slice aliasing would allow appending to a slice of an array to overwrite data in the original array. See assumeSafeAppend.

remove from std.algorithm does an in-place remove.

Also see Array.linearRemove from std.container.


Answering your edit: add

arr ~= [];

at the start of your removeAt function.

This is a no-op when the visible slice is the whole array, but will cause a reallocation when it's a slice of a larger array. Won't work if it's a slice of the end of a larger array.

link|improve this answer
1  
+1 for remove, albeit the last time I checked the implementation was a bit slow. I therefore often use memmove instead. – stephan May 16 '11 at 10:10
Why the downvote? – CyberShadow May 16 '11 at 16:24
@CyberShadow: I don't think remove or linearRemove do the job (the first one would cause a reallocation on adding a new element, no? and the second one doesn't integrate with the language and the GC) but I think assumeSafeAppend is pretty helpful, I'll accept this if it works. :) +1 – Mehrdad May 16 '11 at 18:27
@CyberShadow: No, it seems like assumeSafeAppend is a little tricky: It only works if you're removing from an array that is not a slice of another array; otherwise, you could overwrite the super-array. Is there a way to detect if an array is a slice of a bigger array? – Mehrdad May 16 '11 at 18:35
std.container.Array doesn't have remove. Not sure what exactly you're looking for when you mention language/GC integration, but std.container.Array is reference-counted, and overloads the index and slice operators. – CyberShadow May 16 '11 at 18:39
show 4 more comments
feedback

Copying my answer on digitalmars.D (thanks for forwarding):

As has been mentioned, std.algorithm.remove can be of help. You may want to look at three of its capabilities in particular: (a) remove multiple offsets in one pass, e.g. remove(a, 0, 4) removes the first and fifth element, (b) you can remove subranges, e.g. remove(a, tuple(1, 3)) removes the second through fourth element, and (c) if you don't care about the order in which elements are left after removal you may want to look into unstable remove, which does considerably less work.

Andrei

link|improve this answer
1  
Thanks for the answer! :) Same comment as I posted on the newsgroup, though... remove either doesn't really seem to modify the array correctly (actually removing anything would still cause a reallocation on add). :\ – Mehrdad May 16 '11 at 18:29
feedback

Well if order is of no importance you can copy the last element to the location of removal then reduce the array length by one.

link|improve this answer
Sorry but order is of importance. :( – Mehrdad May 16 '11 at 18:29
feedback

There's no automated way of doing this, you'll have to shuffle the array items along, reset .length and then catenate.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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