vote up 1 vote down star

As an example, if I have the string:

".....ZZ..ZZ....."

or

".Z.1.Z.23Z.4.Z55"

is there an easy way that I can shift each Z in that string one space to the right?

Thanks in advance,

Tomek

Some additional test strings:

".Z" "Z." "ZZ." ".ZZ" "Z" "ZZ" "ZZZ"

I think a few of the higher voted answers to this question (including the currently accepted one) do not work on these tests.

flag

You need to give a better specification. When you say 'shift to the right' do you mean swap the 'Z' and the character to its right? Shift it and put a space (or something) in the spot where it was? What to do if the 'Z' is the last character? What is the correct output for your test strings? – Michael Burr Oct 21 '08 at 7:40
Please also give the correct answer for each of the test strings. Simply stating them and that the given solutions doesn't work isn't much help. – Andreas Magnusson Oct 21 '08 at 14:42

3 Answers

vote up 2 vote down check

Just iterate through the text and swap characters:

int main ()
{
    char text[] = "...Z.Z.Z...", temp;
    int text_len = strlen (text), ii;
    for (ii = text_len - 1; ii >= 0; ii--)
    {
        if (text[ii] == 'Z')
        {
                temp = text[ii+1];
                text[ii+1] = text[ii];
                text[ii] = temp;
        }
    }
    printf ("%s\n", text);
    return 0;
}

Produces:

[~]$ gcc zshift.c && ./a.out
....Z.Z.Z..


There's a lot of discussion in the comments about a possible off-by-1 error in the above code. However, simple testing / stepping through is enough to show that this is not the case.

zshift "Z." -> ".Z"
zshift ".Z" -> "."
zshift "Z" -> ""

I think the behavior of "dropping" trailing Zs when shifting off the end of the string is sensible. After all, if you shift the bits of an integer, bits that end up outside the bounds of the integer are dropped.

If another behavior is desired -- for example, shifting only within the string -- the change to the algorithm is minimal:

temp = text[ii+1];
if (temp == 0) continue;
text[ii+1] = text[ii];
text[ii] = temp;
link|flag
I thought he said right not left :-) – Martin York Oct 21 '08 at 5:14
@Martin: oh, oops, will change – John Millikin Oct 21 '08 at 5:18
but what if you have 2 Z's next to each other, or 3 Z's or 4, etc and you wanted to shift each one of them? – Tomek Oct 21 '08 at 5:32
@Tomek: Unless I'm misunderstanding, my code does that. Change text to "..ZZ.." or whatever, and it'll output the correct result. – John Millikin Oct 21 '08 at 5:38
@John: I'm sorry you were right, I was stepping through this on paper and it was not making sense, but then I saw that you were starting from the right side of the string, which is how this whole thing works. Its all better now, thanks again – Tomek Oct 21 '08 at 6:09
show 11 more comments
vote up 2 vote down

Building on previously posted code here. Function gets str and strlen, overwrites str. Works also with subsequent Z. Going forward for speed improvement with subsequent Z.

void move_z_right (char* str, int strlen) {
    for (unsigned int i = 0; i < strlen - 1; ++i)
    {
        if (str[i] == 'Z')
        {
            unsigned int j = i+1;
            while (str[j] == 'Z' && j < strlen - 1) ++j;
            if (j == strlen) break; // we are at the end, done
            char tmp = str[j];
            str[j] = str[i];
            str[i] = tmp;
            i = j; // continue after new Z next run
        }
    }
}

Note that John Millikin's solution is nicer to read and also correct.

link|flag
I think this is the first working answer I've seen – 1800 INFORMATION Oct 21 '08 at 6:42
vote up 0 vote down

Slight fix to the previous answer (shift to the right and assume '.' means "can move here"):

  char text[] = "...Z.Z.Z...";

  for (int i = strlen(text) - 2); i > 0; --i) {
    if (text[i] == 'Z' && text[i + 1] == '.') {
      text[i] = '.';
      text[i + 1] = 'Z';
    }
  }
link|flag
but what if you have 2 Z's next to each other, or 3 Z's or 4, etc and you wanted to shift each one of them? – Tomek Oct 21 '08 at 5:24
I believe the above code should do it. It'll shift the rightmost one, then the next rightmost, etc.. E.g. starting with: ZZ. Steps would results in: ZZ. Z.Z .ZZ – Steve Lacey Oct 21 '08 at 5:44

Your Answer

Get an OpenID
or

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