vote up 1 vote down star

I'm sorry, didn't know that Length is computed at construction time!!

I got 200 char long string A, 5 char long string B If I do

 int Al = A.length;
 int Bl = B.length;

and compare it -- all seems fine BUT If I do this few million times to calculate something, it's too expensive for the thing I need.

Much simpler and neater way would be some function that can compare two strings and tell me when the other is AT LEAST same as the other. Something like (compare_string_lengths(stringA,stringB) -> where string B must be at least as long (chars) as string A to return TRUE for function.

Yes, I know that the function wouldn't have any idea which string is shorter, but if lengths of the two strings would be counted in parallel so when one exceeds the other, function knows what to "answer".

Thanks for any hints.

flag
You can delete the question, since its flawed premise makes it non-sensical. – Brian Apr 4 at 21:12
Is this part of stackoverflow.com/questions/717801/…? – Marc Gravell Apr 4 at 21:13
@Brian: Why delete? This might be helpful for someone having the same problem. – divo Apr 4 at 21:53
Did you use a profiler? The problem might be in string creation / copying, e.g when concatenating. Without further code / profiling this is hard to tell. – divo Apr 4 at 21:55

2 Answers

vote up 9 vote down check

If you only need to know whether the strings differs in length (or if you wish to check whether the lenghts are equal before comparing), I don't think that you can do it faster than comparing the Length property. Retrieving the length from a string is an O(1) operation.

To actually compare the strings you need to look at each character, which makes it an O(n) operation.

Edit:

If things runs too slowly, you should try to have a look in a profiler, what is the slowest parts ? Perhaps it is the construction of your strings that takes the time ?

link|flag
vote up 1 vote down

There are few things cheaper than comparing the length of two strings.

If you want to find a string in a list of strings, use a Hashtable, like:

    var x = new System.Collections.Generic.Dictionary<string, bool>();
    x.Add("string", true);
    if (x.ContainsKey("string"))
        Console.WriteLine("Found string.");

This is amazingly fast.

link|flag

Your Answer

Get an OpenID
or

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