加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

K&R第1章 – 练习22解决方案,你觉得怎么样?

发布时间:2020-12-16 05:33:46 所属栏目:百科 来源:网络整理
导读:我正在从K r学习C作为第一语言,我只是想问一下,如果你认为这个练习是正确的解决方法,我知道它可能没有你想要的那么完整,但我想要看法,所以我知道我正在学习C. 谢谢 /* Exercise 1-22. Write a program to "fold" long input lines into two or * more shorte
我正在从K& r学习C作为第一语言,我只是想问一下,如果你认为这个练习是正确的解决方法,我知道它可能没有你想要的那么完整,但我想要看法,所以我知道我正在学习C.

谢谢

/* Exercise 1-22. Write a program to "fold" long input lines into two or
 * more shorter lines,after the last non-blank character that occurs
 * before then n-th column of input. Make sure your program does something
 * intelligent with very long lines,and if there are no blanks or tabs
 * before the specified column.
 * 
 * ~svr
 *
 * [NOTE: Unfinished,but functional in a generic capacity]
 * Todo:
 * Handling of spaceless lines
 * Handling of lines consisting entirely of whitespace
 */

#include <stdio.h>
#define FOLD 25
#define MAX 200
#define NEWLINE 'n'
#define BLANK ' '
#define DELIM 5
#define TAB 't'

int
main(void)
{
    int line  = 0,space = 0,newls = 0,i = 0,c = 0,j = 0;

    char array[MAX] = {0};

    while((c = getchar()) != EOF) {
        ++line;
        if(c == NEWLINE)
            ++newls;
        if((FOLD - line) < DELIM) {
            if(c == BLANK) {
                if(newls > 0) {
                    c = BLANK;
                    newls = 0;
                }
                else
                    c = NEWLINE;
                line = 0;
            }
        }
        array[i++] = c;
    }
    for(line = 0; line < i; line++) {
        if(array[0] == NEWLINE)
            ;
        else
            printf("%c",array[line]);
    }
    return 0;
}

解决方法

我相信你在这个艰难的轨道上,但有一些可读性的指针:

>评论你的东西
>正确地命名变量,至少给出描述,如果你拒绝
因此,如果你使用某些单行,有些则不行. (imho,总是使用{},所以它更可读)
>在最后一个for循环中的if语句可以更好,像

if(array[0] != NEWLINE)  
    {   
        printf("%c",array[line]); 
    }

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读