寻求调试帮助,为什么这个分词器没有正确复制数组?

seeking debugging help, Why is this tokenizer not copying the array properly?

在这个作业中,我必须在 c 中创建一个 tokeniser 函数,它将一个字符串的内容复制到另一个字符串中,同时删除空格。它 returns 应该寻找下一个标记的位置。

令牌是一串字符或单个运算符字符。

在我的尝试中,检测并绕过空格的计数器以某种方式阻止了将内容复制到第一个标记之后的结果字符串中。这是我的代码:

int checkOperators(char str[], char operators[], int i){
    int counter = 0;
    while(operators[counter]!='[=10=]')
    {
        if(str[i]==operators[counter]) return 1;
        counter++;
    }
  return 0;
}

int tokenise_ops(char str[], int start, char result[], char operators[]){

    int i = start;
    int j = start;

    while(str[i]==' ' && str[i]!='[=10=]'){
        i++;
    }

    if(checkOperators(str,operators,i)==1)
    {
        result[j]= str[i];
        i++;
        return i;
    }

    while(str[i]!='[=10=]')
    {
        result[j]= str[i];
        i++;
        j++;
        if(str[i]==' ' || checkOperators(str,operators,i)==1) return i;
    }

    return -1;
}

int main()
{
    char str[]="26.6 * 7.9 + 3";
    char result[256];
    char operators[]={'+','-','*','/','^','[=10=]'};

    int start=0;

    start = tokenise_ops(str,start,result,operators);
    while ( start != -1 )
    {
        printf("%s\n", result);
        start = tokenise_ops(str, start, result,operators);
    }
    printf("%s\n", result);

    return 0;
}

您的标记化函数可以是:

int tokenise_ops(char str[], int start, char result[], char operators[])
{
    int i = start;
    int j = 0;

    while ((str[i]==' ') && (str[i]!='[=10=]'))
    {
        i++;
    }


    while(str[i]!='[=10=]')
    {
        if(str[i]==' ' || checkOperators(str,operators,i)==1)
        {
            printf("Test2: %c\n", str[i]);
            result[j] = '[=10=]';

            return i;
        }
        else
        {
            printf("Test: %c\n", str[i]);
            result[j] = str[i];
            i++;
            j++;
        }
    }

    result[j] = '[=10=]';

    return -1;
}
  1. jresult索引,所以每次调用都必须从0开始
  2. 如果字符与标记不匹配,while 循环应存储字符,并在找到标记时以 null 终止结果。
  3. 解析整个 str 时,
  4. result 必须以 null 结尾。