Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
252 views
in Technique[技术] by (71.8m points)

c - I want to be sure if there is at least one 'G' between every '$' and 'T'

I want to write a Function with 1 argument, a string of characters [including $ (money), T (thief), G (guard)] and check if there is at least 1 guard (G) between every T (thief) and $ (money).

Here is my Code but it doesn't work fine for some Inputs ??

int Casino_Security (char* casino)
{

    int i = 0;
    int j = 0;
    while (*(casino + i))
    {
        if(casino[i] == 'T' || casino[i] == '$')
            for(j=i+1; j<=strlen(casino) || casino[j] == 'G'; j++)
                if(casino[j] == 'T' || casino[j] == '$') 
                    if(casino[i] != casino[j])
                        return 0;
        i++;
    }
    return 1;
}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

In the inner forloop, the continuation test should be j<=strlen(casino) && casino[j] != 'G'; : it means breaking the loop as soon as there's a guard.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...