vote up 6 vote down star
1

Hi, I came across these two methods to concatenate strings:

Common part:

char* first= "First";
char* second = "Second";
char* both = malloc(strlen(first) + strlen(second) + 2);

Method 1:

strcpy(both, first);
strcat(both, " ");
strcat(both, second);

Method 2:

sprintf("%s %s", first, second);

In both cases the content of both would be "First Second".

I would like to know which one is more efficient (I have to perform several concatenation operations), or if you know a better way to do it.

Thanks for your time.

EDIT: In the first case the space could have been within one of the strings.

flag
1  
As Michalis Giannakidis points out - there's a buffer overflow here; you need to allocate lengths plus two to allow for the space and the terminal null. – Jonathan Leffler Sep 5 at 16:21
1  
From a performance POV, the things to know are that strcat has to scan all the way along the string to find the end before it can append anything, and that sprintf has to parse the format string. Beyond that, if you want to know which is faster for your particular strings, you have to measure it. – Steve Jessop Sep 5 at 16:24
1  
I guess you could also consider that sprintf is a much bigger function than the simple string manipulators, so will likely evict more code from your icache, and hence is more likely to slow down some other, totally unrelated part of your program. But that kind of effect is beyond the point where you can expect to predict performance in advance – Steve Jessop Sep 5 at 16:28
Thanks for the buffer overflow info here, I'll edit it now. Thanks for the comments too, very appreciated. – Xandy Sep 5 at 16:38

9 Answers

vote up 10 vote down check

For readability, I'd go with

char * s = malloc(snprintf(NULL, 0, "%s %s", first, second) + 1);
sprintf(s, "%s %s", first, second);

If your platform supports GNU extensions, you could also use asprintf():

char * s = NULL;
asprintf(&s, "%s %s", first, second);

If you're stuck with the MS C Runtime, you have to use _scprintf() to determine the length of the resulting string:

char * s = malloc(_scprintf("%s %s", first, second) + 1);
sprintf(s, "%s %s", first, second);

The following will most likely be the fastest solution:

size_t len1 = strlen(first);
size_t len2 = strlen(second);

char * s = malloc(len1 + len2 + 2);
memcpy(s, first, len1);
s[len1] = ' ';
memcpy(s + len1 + 1, second, len2 + 1); // includes terminating null
link|flag
1  
I'd just like to put in a vote of disagreement for your first solution being readable. It's more compact, but is it more readable? I don't think so. I didn't downvote, though. – Imagist Sep 5 at 16:20
It would perhaps be worth mentioning asprintf() which does the memory allocation for you: char *s; int len = asprintf(&s, "%s %s", first, second); without any fuss or muss. – Jonathan Leffler Sep 5 at 16:27
1  
@Jonathan: asprintf() isn't part of the C stdlib and the MS-compiler dosn't support it – Christoph Sep 5 at 16:33
@PS: on second thought, you might have to use _scprintf() to determine the size of the buffer anyway as I'm not sure if _snprintf() from the MS CRT behaves as required by the standard when the size argument is 0 – Christoph Sep 5 at 16:41
@Christoph: yes, I know asprintf() is not standard; that's why I suggested mention it rather than proposing it as 'the answer'. Perhaps I should have put in the relevant caveats in my original comment, though. (Man page at: linux.die.net/man/3/asprintf, amongst other places.) – Jonathan Leffler Sep 5 at 17:00
show 1 more comment
vote up 4 vote down

Here's some madness for you, I actually went and measured it. Bloody hell, imagine that. I think I got some meaningful results.

I used a dual core P4, running Windows, using mingw gcc 4.4, building with "gcc foo.c -o foo.exe -std=c99 -Wall -O2".

I tested method 1 and method 2 from the original post. Initially kept the malloc outside the benchmark loop. Method 1 was 48 times faster than method 2. Bizarrely, removing -O2 from the build command made the resulting exe 30% faster (haven't investigated why yet).

Then I added a malloc and free inside the loop. That slowed down method 1 by a factor of 4.4. Method 2 slowed down by a factor of 1.1.

So, malloc + strlen + free DO NOT dominate the profile enough to make avoiding sprintf worth while.

Here's the code I used (apart from the loops were implemented with < instead of != but that broke the HTML rendering of this post):

void a(char *first, char *second, char *both)
{
    for (int i = 0; i != 1000000 * 48; i++)
    {
        strcpy(both, first);
        strcat(both, " ");
        strcat(both, second);
    }
}

void b(char *first, char *second, char *both)
{
    for (int i = 0; i != 1000000 * 1; i++)
        sprintf(both, "%s %s", first, second);
}

int main(void)
{
    char* first= "First";
    char* second = "Second";
    char* both = (char*) malloc((strlen(first) + strlen(second) + 2) * sizeof(char));

    // Takes 3.7 sec with optimisations, 2.7 sec WITHOUT optimisations!
    a(first, second, both);

    // Takes 3.7 sec with or without optimisations
    //b(first, second, both);

    return 0;
}
link|flag
Thanks for the benchmarking! It's really appreciated! Regarding the time spent with and without optimizations in the first case, -O2 may perform some optimizations which result in slower code in favour of smaller code (linuxjournal.com/article/7269). Thanks for your answer and time. – Xandy Sep 5 at 20:31
Having just looked at the generated instructions, the -O2 code is bigger as well as slower! The problem looks to be that gcc is using the "repne scasb" instruction to find the length of the string. I suspect that that instruction is very slow on modern hardware. I'm going to find a gcc expert to ask about this. – Andrew Bainbridge Sep 5 at 23:02
1  
@Andrew Bainbridge, a little bit OT, but you can use &lt; and &gt; for < and > – quinmars Sep 7 at 14:59
1  
@Andrew Bainbridge: You can also indent by 4 spaces to format as code. Then you don't have to escape < and > and you also get syntax highlighting. – bk1e Sep 7 at 20:18
2  
Try using -march=generic. mingw defaults to i586 which is really really old, outdated and makes assumptions that will fit – LiraNuna Sep 7 at 20:22
show 2 more comments
vote up 1 vote down

sprintf() is designed to handle far more than just strings, strcat() is specialist. But I suspect that you are sweating the small stuff. C strings are fundamentally inefficient in ways that make the differences between these two proposed methods insignificant. Read "Back to Basics" by Joel Spolsky for the gory details.

This is an instance where C++ generally performs better than C. For heavy weight string handling using std::string is likely to be more efficient and certainly safer.

[edit]

[2nd edit]Corrected code (too many iterations in C string implementation), timings, and conclusion change accordingly

I was surprised at Andrew Bainbridge's comment that std::string was slower, but he did not post complete code for this test case. I modified his (automating the timing) and added a std::string test. The test was on VC++ 2008 (native code) with default "Release" options (i.e. optimised), Athlon dual core, 2.6GHz. Results:

C string handling = 0.023000 seconds
sprintf           = 0.313000 seconds
std::string       = 0.500000 seconds

So here strcat() is faster by far (your milage may vary depending on compiler and options), despite the inherent inefficiency of the C string convention, and supports my original suggestion that sprintf() carries a lot of baggage not required for this purpose. It remains by far the least readable and safe however, so when performance is not critical, has little merit IMO.

I also tested a std::stringstream implementation, which was far slower again, but for complex string formatting still has merit.

Corrected code follows:

#include <ctime>
#include <cstdio>
#include <cstring>
#include <string>

void a(char *first, char *second, char *both)
{
    for (int i = 0; i != 1000000; i++)
    {
        strcpy(both, first);
        strcat(both, " ");
        strcat(both, second);
    }
}

void b(char *first, char *second, char *both)
{
    for (int i = 0; i != 1000000; i++)
        sprintf(both, "%s %s", first, second);
}

void c(char *first, char *second, char *both)
{
    std::string first_s(first) ;
    std::string second_s(second) ;
    std::string both_s(second) ;

    for (int i = 0; i != 1000000; i++)
        both_s = first_s + " " + second_s ;
}

int main(void)
{
    char* first= "First";
    char* second = "Second";
    char* both = (char*) malloc((strlen(first) + strlen(second) + 2) * sizeof(char));
    clock_t start ;

    start = clock() ;
    a(first, second, both);
    printf( "C string handling = %f seconds\n", (float)(clock() - start)/CLOCKS_PER_SEC) ;

    start = clock() ;
    b(first, second, both);
    printf( "sprintf           = %f seconds\n", (float)(clock() - start)/CLOCKS_PER_SEC) ;

    start = clock() ;
    c(first, second, both);
    printf( "std::string       = %f seconds\n", (float)(clock() - start)/CLOCKS_PER_SEC) ;

    return 0;
}
link|flag
A quick modification of my test (posted in a separate answer) revealed that converting method 1, with the malloc and free, into C++ using std::string was less than half the speed of the C version. The body of the loop was just "both = first + std::string(" ") + second;" However, the C++ is better in all kinds of other ways. – Andrew Bainbridge Sep 5 at 18:37
Ah, reading the question again, I see how sprintf() would be faster that two strcat() calls, for the reasons mentioned in Joel's article. I am surprised that a std::string implementation was slower, but goes to show you have to measure if you need to know! – Clifford Sep 5 at 20:51
Did you notice that method function a goes around its loop 48 times more than function b or function c? That was my dumb way of demonstrating the performance multiple. Posting the actual timings like you did is much more sensible. The timings I got on mingw gcc 4.4 (with the 48 times multiple removed) were: C string handling = 0.093000 seconds sprintf = 0.266000 seconds std::string = 0.766000 seconds And for Visual Studio 2005 (haven't got 2008 unfortunately): C string handling = 0.047000 seconds sprintf = 0.343000 seconds std::string = 0.485000 seconds – Andrew Bainbridge Sep 5 at 22:36
Here are the timings (1000000 loop times for all) in a Core 2 Duo 2.0 GHz (all of them compiled without optimizations): Small strings: GCC 4.4: C string handling = 0.093 secs., sprintf = 0.328 secs, std::string = 1.560 secs. VC++ 2008: C string handling = 0.062 secs., sprintf = 0.296 secs., std::string = 1.498 secs. Intel C++ Compiler: C string handling = 0.109 secs. sprintf = 0.281 secs. std::string = 0.249 secs. Interesting results those of Intel's. – Xandy Sep 5 at 23:27
Larger strings (120 and 140 characters each) and equal loops (1000000), all of them compiled from command line without optimizations (g++, cl and icl strings.cpp): GCC 4.4: C string handling = 0.250 secs., sprintf = 2.355 secs., std::string = 1.779 secs.; VC++ 2008: C string handling = 0.280 secs., sprintf = 2.216 secs., std::string = 4.836 secs.; Intel C++ Compiler: C string handling = 0.748 secs., sprintf = 2.465 secs., std::string = 3.214 secs. By the way, very interesting the article by Joel Spolsky. – Xandy Sep 5 at 23:29
show 4 more comments
vote up 2 vote down

The difference is unlikely to matter:

  • If your strings are small, the malloc will drown out the string concatenations.
  • If your strings are large, the time spent copying the data will drown out the differences between strcat / sprintf.

As other posters have mentioned, this is a premature optimization. Concentrate on algorithm design, and only come back to this if profiling shows it to be a performance problem.

That said... I suspect method 1 will be faster. There is some---admittedly small---overhead to parse the sprintf format-string. And strcat is more likely "inline-able".

link|flag
The strcat version scans the full length of the first string four times, whereas the sprintf version only does so twice. So when the first string is very very long, the strcat version will eventually end up slower. – caf Sep 7 at 1:42
vote up 0 vote down

I don't know that in case two there's any real concatenation done. Printing them back to back doesn't constitute concatenation.

Tell me though, which would be faster:

1) a) copy string A to new buffer b) copy string B to buffer c) copy buffer to output buffer

or

1)copy string A to output buffer b) copy string b to output buffer

link|flag
vote up 6 vote down
size_t lf = strlen(first);
size_t ls = strlen(second);

char *both = (char*) malloc((lf + ls + 2) * sizeof(char));

strcpy(both, first);

both[lf] = ' ';
strcpy(&both[lf+1], second);
link|flag
1  
That strcat should be a second strcpy - this is undefined behavior as written. – Steve Jessop Sep 5 at 16:18
1  
+1 - you spotted the buffer overflow! – Jonathan Leffler Sep 5 at 16:18
In fact, one could use memcpy, since the length are already calculated :) – Filip Navara Sep 5 at 16:22
But, as @onebyone points out, the strcat() is not OK this time, because the strcat() starts tracking after the space, and you don't know what characters are in the string at that point. – Jonathan Leffler Sep 5 at 16:23
The strcat is definitely a mistake. I will edit and fix it – Michalis Giannakidis Sep 5 at 16:29
show 3 more comments
vote up 2 vote down

They should be pretty much the same. The difference isn't going to matter. I would go with sprintf since it requires less code.

link|flag
vote up 16 vote down

Don't worry about efficiency: make your code readable and maintainable. I doubt the difference between these methods is going to matter in your program.

link|flag
1  
I am with Ned. It seems like you are performing premature optimisation. Like girls, it is also the root of all evil (it has multiple roots). Get your program running, then profile it, then optimise. Until then you are just waiting time IMHO. – freespace Sep 5 at 16:05
Fair enough, thanks for your comments. I think that doing some things in a better manner from the beginning can save time later on, and this one may be one. Thanks once more. – Xandy Sep 5 at 16:24
@Xandy: you're right that doing things better to start with is good, but in practice faster code usually isn't "better" to debug and maintain. I always end up spending way more time debugging and refactoring my code, and adding more features, than I spend speeding it up. So personally I'd either use s(n)printf (or even a string library that handles allocation) to optimise simplicity of the source code, or if optimising for speed I'd do an absolute bare minimum of memory access (and hence not use strcat when I already have the lengths). – Steve Jessop Sep 5 at 16:36
1  
@Ned: That doesn't answer the question! He asked which way is more efficient, not if he should worry about efficiency or not. – Wadih M. Sep 5 at 16:42
@Wadih: it's an answer that points out an unexamined assumption and thus makes the OP's question irrelevant. It's about the higher goal of efficiency in development. Both make it an appropriate answer. catb.org/~esr/faqs/… – outis Sep 5 at 19:02
show 3 more comments
vote up 0 vote down

Neither is terribly efficient since both methods have to calculate the string length or scan it each time. Instead, since you calculate the strlen()s of the individual strings anyway, put them in variables and then just strncpy() twice.

link|flag
3  
why should he use strncpy() if he knows the strings' sizes? memcpy() is your friend! – Christoph Sep 5 at 15:59

Your Answer

Get an OpenID
or

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