我试图比较位的模式,为此我有一个结构,它将模式保存为字符串。然后我想把这个字符串与我构建的另一个字符串进行比较。我使用strcmp,但是它匹配两个字符串,即使它们不匹配。
这是我的密码

typedef struct
{
    int emp;
    char *context;
    int numOnes;
    int numZeros;


}Pattern;

char *patt, str[t+1];
    patt = str;
    while(count<t){
        //printf("Stream: %d\n", stream[end]);
        if(stream[end] == 1){
            patt[count]= '1';
            //writeBit(1);
        }
        else{
            patt[count]='0';
            //writeBit(0);
        }


        end--;
        count++;
    } //code to build a string

while(i<(1<<t)&&(found==0)){
        if((strcmp(patt,patterns[i].context)==0)){
            if(patterns[i].numOnes <= patterns[i].numZeros){
                prediction = 0;
                checkPredict(prediction,stream[end], i);
            }
            else{
                prediction = 1;
                checkPredict(prediction,stream[end], i);
            }
            found = 1;

        }
        else{
            found = 0;
        }
        i++;
    }//comparing string

最佳答案

您永远不能终止patt,即在最后一个字符后写入'\0'字符。因此,它不是有效的字符串,因此不能对其使用strcmp()

07-24 12:38