Is it efficient to compare a string with another string or string literal like this?
string a;
string b;
if (a == "test")
or
if (a == b)
My coworker asked me to use memcmp
Any comments about this?
Thanks.
|
Yes use You should always prefer code readability and using STL over using C functions unless you have a specific bottleneck in your program that you need to optimize and you have proven that it is truly a bottleneck. |
|||
|
|
|
Obviously you should use For the record, |
||||
|
|
|
If you really need to know, you should write a test-application and see what the timing is. That being said, you should rely on the provided implementation being quite efficient. It usually is. |
|||
|
|
|
I think your coworker is a bit hooked up on possible optimization.
|
||||
|
|
|
It's less efficient. In C, |
|||
|
|
|
STL best practice is to always prefer member functions to perform a given task. In this case that's Your coworker needs to think a bit more in C++ and get away from the CRT. Sometimes I think this is just caused by fear of the unknown - if you can educate on C++ options, perhaps you will have an easier time. |
|||
|
|
Maybe or maybe notIf your C++ implementation uses a highly optimized memcmp (as GCC has) and
it's C++ string comparison does the trivial On shorter strings, these optimizations wouldn't be visible in the timings - but on larger strings (some 10K or so), the speedup should be clearly visible. The Answer: it depends ;-) Check your C++ strings implementation. Regards rbo |
|||
|
|
Only If Speed is Very ImportantUse strings of fixed size (32-64 bytes is very good), initialized to all zeros and then filled with string data. (Note that here, by "string" I mean raw C code or your own custom string class, not the std::string class.) Use memcpy and memcmp to compare these strings always using the fixed buffer size. You can get even faster than memcmp if you make sure your string buffers are 16-byte aligned so you can use SSE2 and you only need to test for equality and not greater or less-than. Even without SSE2 you can do an equality compare using subtraction in word-sized chunks. The reason that these techniques speed things up is that they remove the byte-by-byte comparison test from the equation. Looking for the terminating |
|||
|
|
memmoveinstead of assignment andmallocinstead of stack allocation? Did your coworker sanction usage ofstd::stringinstead ofvoid*? – Konrad Rudolph Nov 10 '10 at 15:13a == bis easier to understand and to write. How does he recommend usingmemcmp? I can only think of eithermemcmp(a.c_str(), b.c_str(), a.size())which creates temporarychararrays (which may happen ina == b) and the potentially wrongmemcmp(&a, &b, sizeof(a)). – Jaime Soto Nov 10 '10 at 15:17