vote up 2 vote down star

I currently have a list called regkey and a string called line_to_delete, which I obviously want to delete from the list. At the moment I'm searching through one element of the list at a time creating substrings as line_to_delete only represents part of the line that I want to delete but is uniquely identifiable within the list.

Anyway what I really need to do is make this more efficient, use fewer resources and be quicker, so are there any ways to do this?

flag

5 Answers

vote up 3 vote down check

Use lamba expressions if it's a List<string>:

list.RemoveAll(x => x.Contains(line_to_delete));
link|flag
This will still have O(n) performance – mfeingold Nov 4 at 16:20
Yes but since the OP is matching on substrings I don't think a SortedList will help. – Jamie Ide Nov 4 at 16:22
True, but you have the binary tree in it and you can implement your binary search yourself over the existing tree. It us not this difficult and you will get the O(log(n)) this way – mfeingold Nov 4 at 16:28
2  
@mfeingold: As far as I know, most of sorting algorithms usually take O(n*log(n)) and the binary search requires a sorted list. – Chansik Im Nov 4 at 17:11
1  
@Chansik this is true, but you only need to sort it once – mfeingold Nov 4 at 17:56
show 2 more comments
vote up 2 vote down

The simplest way is to use:

var result = list.Where(x => !x.Contains(line_to_delete))

First, make sure this isn’t efficient enough. If it isn’t, you need to resort to advanced data structures to represent your strings, such as a trie. There’s no native support in C# for any such things.

link|flag
vote up 2 vote down

Your best bet is to sort the list and use binary search. SortedList will do this for you.. This way you can get O(log(n)) performance

link|flag
List<T> also has a BinarySearch method: msdn.microsoft.com/en-us/library/… – R. Bemrose Nov 4 at 16:21
No, that doesn’t help at all, since the OP is searching for matching substrings. – Konrad Rudolph Nov 4 at 16:43
1  
What about the cost of sorting the list? – Chansik Im Nov 4 at 17:11
vote up 2 vote down
        List<String> regKey = new List<String> { "test1", "test2" };
        var toDelete = regKey.Where(u => u.Contains(line_to_delete)).SingleOrDefault();
        if (toDelete != null)
            regKey.Remove(toDelete);

or

regkey.RemoveAll(k => k.Contains(line_to_delete));

This will make your deletion more readable, but I'm not sure on the performance compared against your current method.

link|flag
vote up 1 vote down

I think it is better to use indexOf rather than contains, that speeds up search

so use :

regkey.RemoveAll(k => k.IndexOf(line_to_delete) >=0);
link|flag

Your Answer

Get an OpenID
or

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