vote up 0 vote down star
1
char *s = "hello ppl.";
for (i = 0; i < strlen(s); i++) {
    char c = s[i];
    if (c >= 97 && c <= 122) {
        c += 2;
        s[i] = c;
    }
}

I want to rotate the string by two characters: "hello ppl." -> "jgnnq rrn."

I am getting a segmentation fault. What is wrong with the code?

flag

1  
Note: output should begin with "j" not "i" – RC Nov 6 at 5:26
1  
well, it segfaults, obviously! :-) – Nathan Fellman Nov 6 at 5:44
1  
'You can't modify string literals' is what's wrong. – Michael Foukarakis Nov 6 at 6:15
1  
Warning: The accepted answer by paxdiablo contains code that is much slower than the original code, and also slower than the other answers given. So if you want an efficient solution to this, look further down. – Ray Burns Nov 6 at 18:20
1  
@Ray - unless the OP is encoding millions of characters, it probably doesn't make the slightest bit of difference that your solution is 10 times faster. – Stephen C Nov 7 at 0:41
show 2 more comments

5 Answers

vote up 30 vote down check

The code:

 char *s = "hello ppl.";

gives you a pointer to what it almost certainly read-only memory. When you try to write to that memory, you get a segmentation violation. Try this instead:

char s[] = "hello ppl.";

which is conceptually the same as:

char s[11];
strcpy (s, "hello ppl.");

In other words, it puts the string you want to change into writable memory. The following code:

#include <stdio.h>
#include <string.h>
int main(void) {
    int i;
    char s[] = "hello ppl.";
    for (i = 0; i < strlen(s); i++) {
        char c = s[i];
        if (c >= 97 && c <= 122) {
            c += 2;
            s[i] = c;
        }
    }
    printf("%s\n",s);
    return 0;
}

gives you "jgnnq rrn.".

A few other things I'd like to point out which are not fatal:

  • It's not usually a good idea to use 'magic' numbers like 97 and 122. It's just as easy, and clearer in intent, to use 'a' and 'z'.
  • If you really want to rotate, you can't blindly add 2 to 'y' and 'z'. You have to treat them specially (subtract 24) so that they map correctly to 'a' and 'b'.
  • The C standard doesn't guarantee that alpha characters are contiguous. If you know you're using ASCII, you're probably okay but I thought I'd just mention that. As an aside, it does guarantee that for the numeric characters.

Having said that, I'd rather use a mapping table as follows:

#include <stdio.h>
#include <string.h>
int main (void) {
    char *lkupPtr, *strPtr;
    char str[] = "hello ppl.";
    const char * const from = "abcdefghijklmnopqrstuvwzyz";
    const char * const to   = "cdefghijklmnopqrstuvwzyzab";

    for (strPtr = str; *strPtr != '\0'; strPtr++)
        if (lkupPtr = strchr (from, *strPtr)) != NULL)
            *strPtr = to[(int)(lkupPtr - from)];

    printf("%s\n",str);
    return 0;
}

This takes care of all the points I raised above and you can, if necessary, add more mappings if you're in an internationalized environment (rather than just plain ASCII or EDCDIC).

This should be, in my opinion, fast enough for all but the most demanding of requirements (I clocked it at over 3 million characters per second on my PC). If you have a near-insatiable need for performance over and above that, yet don't want to opt for hand-crafted assembly targeted to your specific CPU, you could try something like the following.

It's still fully compliant with the C standard but may deliver better performance by virtue of the fact all heavy calculation work is done once at the start. It creates a table holding all possible character values, initializes it so that every character translates to itself by default, then changes the specific characters you're interested in.

That removes any checking for characters from the translation itself.

#include <stdio.h>
#include <string.h>
#include <limits.h>

static char table[CHAR_MAX + 1];
static void xlatInit (void) {
    int i;
    char * from = "abcdefghijklmnopqrstuvwzyz";
    char * to   = "cdefghijklmnopqrstuvwzyzab";
    for (i = 0; i <= CHAR_MAX; i++) table[i] = i;
    while (*from != '\0') table[*from++] = *to++;
}

int main (void) {
    char *strPtr;
    char str[] = "hello ppl.";

    xlatInit(); // Do this once only, amortize the cost.

    for (strPtr = str; *strPtr != '\0'; strPtr++)
        *strPtr = table[*strPtr];

    printf("%s\n",str);
    return 0;
}
link|flag
You might want to include string.h , since you are giving an example that can be pasted and compiled. – Tim Post Nov 6 at 5:32
And it would be better if the code used 'islower()' from '<ctype.h>' - for all the original was written as shown. – Jonathan Leffler Nov 6 at 5:40
Good point, @Tim. Done. @JL, another good point but not necessary for my preferred from/to solution. – paxdiablo Nov 6 at 6:03
1  
@Ray, "better" is a subjective term, I prefer measurable terms like "faster". And yes, your code is now faster but, until you made the change to your array size, it was not portable (hence the comments). As to whether there is actually a difference in handling 3 or 30 billion chars per second, that's for whoever is using it. In my opinion, unless you're actually having to process really huge quantities (many, many billions), it won't make a difference. But, as I said, if you need that speed, then optimize - and that would include bypassing C altogether and hand-crafting assembler. – paxdiablo Nov 7 at 14:41
1  
@paxdiablo, well i think you meant const char * const then :) If you put const before the star, then the order where it appears is arbitrary, (i usually prefer char const *const for instance), so one of the two consts you have there is redundant :) – Johannes Schaub - litb Nov 7 at 15:28
show 13 more comments
vote up 6 vote down

The variable s points to read-only memory. This means that it cannot be modified. You'll want to use:

char varname[] = "...";

Gotchas to watch out for:

char varname[] = "...";

Places the data on the stack. Make sure you are not returning a pointer to a functions local data. If that's the case you'll want to look at malloc to allocate memory in the heap.

Another gotcha:

for (i = 0; i < strlen(s); i++) {...} is O(N^2)

The reason is that strlen(s) is an O(N) operation you do each time through the loop. An improvement would be:

int len = strlen(s);
for(i=0;i<len;i++) { ... }

This way we only do the strlen(s) computation once and reuse the result.

link|flag
+1 for comment about strlen() in the loop. I'm not wholly convinced about the term static memory; readonly memory might be better. – Jonathan Leffler Nov 6 at 5:42
GCC optimises the strlen out with -O2. I guess the result is known at compile time because the s is known at the time strlen is called, and it points to readonly memory. – dreamlax Nov 6 at 6:20
That's ... brave ... of the compiler. It deosn't point to read-only memory at all (char x[] = "ff"; puts it on the stack). I'd be interested as to how gcc figures this out. Or did you mean strlen in the original where it was read-only? – paxdiablo Nov 6 at 7:00
@paxdiablo: I mean the original posted by the OP in his question. – dreamlax Nov 6 at 8:14
vote up 5 vote down

In char *s = "hello ppl." you are not allocating any memory, instead you are pointing to a string which may be residing in read-only memory of your program. Ideally it should be const char*. Now if you try to modify it, it will crash.

link|flag
String literals are typed as const char* in the read-only static string table when compiled. Good call on this @Naveen: the type information of string literals is lost on many people. – rpj Nov 19 at 3:09
vote up 5 vote down

The code:

char *s = "hello ppl.";

creates an entry in the string table, typically in the code segment (read only space of the program). Any attempts to change it will cause the segfault by trying to modify read only memory. The appropriate way to create/initialize a string to be modified is:

char s[] = "hello ppl.";
link|flag
vote up 3 vote down

As others have mentioned,

char *s = "hello ppl.";

points to read-only memory because it is a string literal. It should be

char s[] = "hello ppl.";

which creates an array in read-write memory and copies the string into it.

Ignoring non-ASCII character sets, the problem can be solved most efficiently like this:

void Convert(char *s)
{
  for(char *sp = s; *sp; sp++)
    if(*sp >= 'a' && *sp <= 'z')
      *sp = (*sp - 'a' + 2) % 26 + 'a';
}

If you're dealing with EBCDIC or any other charset that doesn't have contiguous alphabetic characters, you can use a map:

char *from = "abcdefghijklmnopqrstuvwxyz";
char *to   = "cdefghijklmnopqrstuvwxyzab";
char map[CHAR_MAX+1];

void Initialize()
{
  for(int i=0; from[i]; i++)
    map[from[i]] = to[i];
}

void Convert(char *s)
{
  for(char *sp = s; *sp; sp++)
    if(map[*sp])
      *sp = map[*sp];
}

The compiler will optimize each of these to nearly optimal assembly language.

Update In the original problem there was no separate Initialize() call, so I optimized the code to make "Initialize(); Convert(s);" as fast as possible. If you are able to call Initialize() ahead of time and only care about how fast "Convert(s);" runs, the optimal code will fill the array first, like this:

char *from = "abcdefghijklmnopqrstuvwxyz";
char *to   = "cdefghijklmnopqrstuvwxyzab";
char map[CHAR_MAX+1];

void Initialize()
{
  int i;
  for(i=0; i<=CHAR_MAX; i++)  // New code here fills the array
    map[i] = i;
  for(i=0; from[i]; i++)
    map[from[i]] = to[i];
}

void Convert(char *s)
{
  for(char *sp = s; *sp; sp++)  // 'if' removed
    *sp = map[*sp];
}

This modified code is 375% slower if you are calling "Initialize(); Convert(s);", but it is 3% faster if you have already called Initialize() and you are only timing "Convert(s);".

link|flag
1  
Other than the problem that a character set may have more than 256 characters, that's not bad. But why wouldn't you change Initialize to first set map[i] = i for i= 0..255, then change the mappings for the specific characters in from and to? That way, you're lookup code can ditch the 'if' altogether. – paxdiablo Nov 6 at 7:04
@paxdiablo: This solution is already much faster than yours (2.38ns vs 3.32ns on an Intel Core Duo T7400 VC++ 9 using the given input data). Unfortunately your suggestion would slow it down, not speed it up. I tried code filling the whole map in advance and omitting the 'if', and it turned out to MUCH slower at 11.31ns, almost 5x as slow. That's why I used the 'if'. Of course if the string were much longer or the initialization were a separate step, the complete map would be faster (I timed it at 0.35ns with the initialization step done in advance). – Ray Burns Nov 6 at 18:28
Fixed the hard-coded 256 to make it portable even to machines with 9 bit and 16 bit char types – Ray Burns Nov 7 at 0:31
+1 for nice & clean code. Dunno why this is at -1. I like both your's and paxdiablo ones. – Johannes Schaub - litb Nov 7 at 0:48
@Ray, well you say you added the if because your code would be slower with the complete map filled because you call Initialize each time. But in your code you don't do that, as far as i can see. Have you missed putting Initialize(); somewhere? – Johannes Schaub - litb Nov 7 at 1:04
show 3 more comments

Your Answer

Get an OpenID
or

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