3

问题:编写一个程序,使用字符串接收文本输入getchar()并输出字符串,并删除多个空格。

这是我编写伪代码的方式:

While each input character is received before reaching EOF, do the following:
     1) if character is non-blank, print it out
     2) otherwise:
         a. print out the blank
         b. do nothing untill the next non-blank character 
     3) if a non-blank character is reached, go back to 1)

我试图这样实现算法:

#include <stdio.h>
/* replaces multiple blanks with a single blank */
main(){
    char c;
    while((c= getchar())!=EOF){
        if (c != ' ')
            putchar(c);
        else {
            putchar(c);
            while(c == ' ')
                ;
        }
    }   
}

当字符串包含空格时,它会停止。我不确定我应该如何调试它。我认为问题出在我的第二个while,程序在那里进入无限循环,而不是等待新字符。

4

5 回答 5

3
#include <stdio.h>
/* replaces multiple blanks with a single blank */
main(){
    int c; // thanx chux
    while((c= getchar())!=EOF){
        if (c != ' ')
            putchar(c);
        else {
            putchar(c);
            while((c= getchar())!=EOF)
                if (c!=' ')
                {
                    putchar(c);
                    break;
                }
        }
    }   
}

您最后一次没有从标准输入读取字符,导致无限循环比较前一个 getchar() 中的最后一个红色字符。

于 2014-11-29T17:45:49.260 回答
2

Anonymous 的回答有效,但有一个更简单的算法也有效:

While there is input remaining:
    Read a character.
    If the current and previous characters aren't both blank:
        Print the current character.

在 C 中:

#include <stdio.h>

int main() {
    int prev = EOF, c;
    while ((c = getchar()) != EOF) {
        if (c != ' ' || prev != ' ')
            putchar(c);
        prev = c;
    }
    return 0;
}
于 2014-11-29T17:59:58.760 回答
1
#include <stdio.h>

int main(void){
    int c;
    while((c = getchar())!=EOF){
        if (c != ' ')
            putchar(c);
        else {
            putchar(c);
            while((c = getchar()) == ' ')
                ;
            ungetc(c, stdin);//go back 1
        }
    }
    return 0;
}
于 2014-11-29T17:57:26.617 回答
0

你的程序有几个问题:

  • 的原型main()必须包含返回类型int

  • c必须定义为,int以便您可以正确区分.EOF返回的所有有效字节值getchar()

  • 在识别出一个空白字符后,您必须继续阅读字符并跳过后续的空白。

  • 从技术上讲,空白字符包括空格字符' '和制表符'\t'。您应该使用isblank()from<ctype.h>并修改您的程序以跳过后续的空白字符。

这是修改后的版本:

#include <ctype.h>
#include <stdio.h>

/* replaces multiple blanks with a single blank */
int main(void) {
    int c;
    while ((c = getchar()) != EOF) {
        putchar(c);
        if (isblank(c)) {
            while (isblank(c = getchar())
                continue;
            if (c == EOF)
                break;
            putchar(c);
        }
    }
    return 0;
}
于 2017-07-15T21:30:06.900 回答
0

这对我有用。

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

int main()
{
    int c;
    int space = 0;

    while ((c = getchar())!= EOF){

            if (c != ' '){
                putchar(c);
            }else{
                if(space == ' '){
                    continue;
                }else{
                    putchar(c);
                }
            }
            space = c;
    }
    return 0;
}
于 2017-07-15T21:15:06.127 回答