为什么该程序会导致无限循环输出?

时间:2019-10-15 22:14:56

标签: c infinite-loop stdio

此代码是日常编程邮件列表中的练习。我正在尝试以相反的顺序打印给定单词的列表。单词由空格分隔。当运行下面的代码时,它进入一个无限循环,仅打印(新)第一个单词。我已经仔细检查了条件,对我来说一切都很好。我认为指出一个简单的错误可能需要重新审视,但我什么也找不到。感谢任何可以伸出援手的人。

*注意:我计划在解决此问题后将空格重新添加到输出中。我知道到目前为止,输出将只是一个没有空格的长字符串。

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

int main (void)
{
    char *words;
    words = "here world hello spam foo bar baz";
    int space_indices[10];
    int counter = 0;

    // Find the spaces and keep track of the index numbers in the space_indices array
    for (int i = 0; i < strlen(words); i++) {
        if (words[i] == ' ') {
            space_indices[counter] = i;
            counter++;
        }
    }

    for (int i = counter - 1; i >= 0; i--) {
        if ( i = counter - 1) {
            // Print the first word
            for (int j = space_indices[i] + 1; j < strlen(words); j++) {
                printf("%c", words[j]);
            }
        } else if (i >= 0) {
            // Print the other words except for the last
            for (int j = space_indices[i] + 1; j < space_indices[i + 1]; j++) {
                printf("%c", words[j]);
            }
        } else {
            // Print the last word
            for (int j = 0; j < space_indices[0]; j++) {
                printf("%c", words[j]);
            }
        }
    }
}

1 个答案:

答案 0 :(得分:2)

正如Havenard解释的那样,问题在于我没有使用比较运算,而是在使用赋值运算符。

此:

_rb

应为:

if ( i = counter - 1)