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

I have a list of items, lets say 100 items. I need to add another element before the existing element that matches my condition. What is the fastest way and the most performance optimized to do this? ie.:

foreach (var i in myList)
{
    if (myList[i].value == "myValue")
    {
        myList[i-1] add ("someOtherValue")
    }
}

Maybe i should use other container?

share|improve this question
What is myList? – James Hill Nov 19 '12 at 16:45
myList is List<someTYpe>. – kul_mi Nov 19 '12 at 16:49

5 Answers

up vote 4 down vote accepted

First you could find the index of your item using FindIndex method:

var index = myList.FindIndex(x => x.value == "myvalue");

Then Insert at the right point:

myList.Insert(index,newItem);

Note that inserting at a given index pushes everything else forward (think about finding your item at index 0).

share|improve this answer
1  
But what if the condition is an element of a collection? In other words, "myvalue" is an element of List<conditions> ? Will that couse errors if I use foreach loop to compare all values in 'myList' with all elements form 'conditions' ? – kul_mi Nov 19 '12 at 17:05
myList.Insert(myList.IndexOf("myValue") - 1, "someOtherValue");

You should probably check to make sure myvalue exists first, and it is not in index 0.

share|improve this answer
This assumes its List<string> and the OP's items have a value property which implies its a custom type. – Jamiec Nov 19 '12 at 16:51
@Jamiec Title says list, tag says list. OP never claimed that code was even valid. – Erix Nov 19 '12 at 18:14

Consider using a LinkedList<T>. It has the advantage that inserting or removing items does not require shifting any items. The disadvantage is that items cannot be accessed randomly. You have to traverse the list starting at the first or last item in order to access the items.

share|improve this answer
int index = myList.IndexOf("myValue");
if (index >= 0)
  myList.Insert(index, "myNewValue");

By the way, you should not modify your own collection or list while iterating with for-each (as in your code above).

share|improve this answer
+1 for the comment. I think it'll throw a runtime exception if you do that. – Erix Nov 19 '12 at 21:24

I presume the list is an array - in which case have you tried doing this with Linq?

string[] mylist = new string[100];
// init the list
List<string> list = keys.ToList();
list.Insert(1,"somethingelse");
mylist = list.ToArray(); // convert back to array if required

if it is a List to begin with, you can skip the conversions and use Insert directly.

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.