I know it's a little unorthodox and will probably cost me some downvotes, but since it's due in 1 hour and I have no idea where to begin I thought I'd ask you guys.

Basically I'm presented with a string that contains placeholders in + form, for example:

1+2+5

I have to create a function to print out all the possibilities of placing different combinations of any given series of digits. I.e. for the series:

[9,8,6] // string array

The output will be

16265
16285
16295
18265
18285
18295
19265
19285
19295

So for each input I get (number of digits)^(number of placeholders) lines of output. Digits are 0-9 and the maximum form of the digits string is [0,1,2,3,4,5,6,7,8,9]. The original string can have many placeholders (as you'd expect the output can get VERY lengthly).

I have to do it in C, preferably with no recursion. Again I really appreciate any help, couldn't be more thankful right now.

If you can offer an idea, a simplified way to look at solving this, even in a different language or recursively, it'd still be ok, I could use a general concept and move on from there.

link|improve this question

It would take me thirty seconds to write this program in C++, but I can't crack out C in that time. Sorry. – DeadMG Dec 2 '10 at 21:08
C++ could be good too, I'll just have to translate it somehow. Please help! – Gal Dec 2 '10 at 21:10
1  
Why do you want to avoid recursion? This problem can be reduced to computing all the possibilities of nCr where n is the number of + signs and r is the number digits in the series. This is most easily solved recursively. – Niki Yoshiuchi Dec 2 '10 at 21:10
@sombe: Ok. Is the series string array in compile-time form or also entered at runtime? – DeadMG Dec 2 '10 at 21:10
1  
-1: due in 1 hour and I have no idea where to begin – Falmarri Dec 2 '10 at 21:23
show 4 more comments
feedback

2 Answers

up vote 1 down vote accepted

It prints them in different order, but it does not matter. and it's not recursive.

#include <stdlib.h>
#include <stdio.h>

int // 0 if no more.
get_string(char* s, const char* spare_chr, int spare_cnt, int comb_num){
    for (; *s; s++){
        if (*s != '+') continue;
        *s = spare_chr[comb_num % spare_cnt];
        comb_num /= spare_cnt;
    };
    return !comb_num;
};

int main(){
    const char* spare_str = "986";
    int num = 0;
    while (1){
        char str[] = "1+2+5";
        if (!get_string(str, spare_str, strlen(spare_str), num++)) 
            break; // done
        printf("str num %2d: %s\n", num, str);
    };
    return 0;
};
link|improve this answer
Do you know why it only prints the first option and not all of them? – Gal Dec 2 '10 at 21:32
All of them. (just #include <string.h> so that it would actually compile). – ruslik Dec 2 '10 at 21:35
I need the exact order I wrote it. They compare the output with theirs. – Gal Dec 2 '10 at 21:37
2  
It's homework. Try doing at least something by yourself. – ruslik Dec 2 '10 at 21:41
@sombe: At least instead of a boring homework you have a nice reverse engineering problem ;) – ruslik Dec 2 '10 at 21:51
feedback

In order to do the actual replacement, you can use strchr to find the first occurrence of a character and return a char * pointer to it. You can then simply change that pointer's value and bam, you've done a character replacement.

Because strchr searches for the first occurrence (before a null terminator), you can use it repeatedly for every value you want to replace.

The loop's a little trickier, but let's see what you make of this.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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