gpt4 book ai didi

c - 用空格替换换行符并按特定行长度对单词进行排序

转载 作者:太空宇宙 更新时间:2023-11-04 03:52:02 24 4
gpt4 key购买 nike

我刚刚打开了一个文本文件,其中包含几行不同长度的行,有些行以“.”开头。 (点)所以这些被定义为函数,我稍后会处理它们。

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main()
{
char line[10000];
char filename[30];
FILE *fp;
int i;
int u;

printf("Enter file name with extension\n");
gets(filename);

fp = fopen(filename,"r");

if( fp == NULL )
{
perror("Error while opening the file.\n");
exit(EXIT_FAILURE);
}

我努力了 2 天在同一行中打印其余行(不是函数)但是当我使用 strtok 函数时,如您所见,它删除了它而不添加空格, 所以不同行的字符混合在一起。

第二个问题是我试图将行长度限制为最多 60 个字符,如果长度等于或小于,则将单词放入空格中。

while(fgets(line,10000,fp) != NULL )
{
if(line[0]!='.'){
strtok(line,"\n");
for(u=0;u<strlen(line);u++){
if(u==60){
printf("\n");
}
else{printf("%c",line[u]);}
}

printf("%s",line);
}
else{printf("");}

}

fclose(fp);
return 0;
}

最佳答案

您需要一个类似于以下的算法:

  • 将输出行设置为空并将行长度设置为零
  • 虽然读取输入行没有检测到 EOF
    • 如果是函数行,继续while read循环的下一次迭代
    • 不在当前输入行的末尾
      • 在输入行中查找下一个单词(strtok(),或者 strcspn()strpbrk())
      • 如果输出行的长度加上空格加上下一个单词的长度大于 60,则打印输出行,将行长度设置为零
      • 如果行长大于零,加空格
      • 将下一个单词添加到输出行并增加长度
  • 如果输出行有内容,打印出来

这让您忽略了函数行。或者,您可以刷新当前输出行(如果它不为空),打印函数行,然后转到下一行。

请注意,如果下一个单词是 60 个或更长的字符,则不会将其截断或拆分;它只会自己占据一行。您有责任注意没有缓冲区溢出。例如,您可能刷新前一个输出行,打印这个词及其换行符,然后将输出重置为空。或者你可以拆分单词(但是你会拆分其中的一些以适合当前行,其余的放在下一行,或者只是强制开始到下一行然后拆分?)。如果单词长度为 250 个字符怎么办?


这是对上述算法的相当直接的音译。它从标准输入读取;我拒绝回答有关打开哪个文件名的提示。如果我想处理任意文件,它们将作为参数在命令行上传递。

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

/*
.function line should not appear in output
*/

/*
WordOfMoreThanSixtyCharacters--WithNaryASpaceInSight--ThoughThereIsPunctuation!
*/

enum { OUT_LENGTH = 60 };

int main(void)
{
char oline[OUT_LENGTH]; // output line
char iline[4096]; // input line
int olength = 0; // length of data in output line
const char separators[] = " \n\t";

while (fgets(iline, sizeof(iline), stdin) != 0)
{
if (iline[0] == '.')
continue;
int wlength; // word length
char *wline = iline; // start of word
wline += strspn(wline, separators);
while ((wlength = strcspn(wline, separators)) > 0)
{
if (olength + 1 + wlength > OUT_LENGTH)
{
printf("%.*s\n", olength, oline);
olength = 0;
if (wlength >= OUT_LENGTH)
{
printf("%.*s\n", wlength, wline);
wline += wlength;
wlength = 0;
}
}
if (wlength > 0)
{
if (olength > 0)
oline[olength++] = ' ';
strncpy(&oline[olength], wline, wlength);
olength += wlength;
wline += wlength;
}
wline += strspn(wline, separators);
}
}
if (olength > 0)
printf("%.*s\n", olength, oline);
return 0;
}

在其自己的源代码上运行时的输出:

#include <stdio.h> #include <string.h> /* */ /*
WordOfMoreThanSixtyCharacters--WithNaryASpaceInSight--ThoughThereIsPunctuation!
*/ enum { OUT_LENGTH = 60 }; int main(void) { char
oline[OUT_LENGTH]; // output line char iline[4096]; // input
line int olength = 0; // length of data in output line const
char separators[] = " \n\t"; while (fgets(iline,
sizeof(iline), stdin) != 0) { if (iline[0] == '.') continue;
int wlength; // word length char *wline = iline; // start of
word wline += strspn(wline, separators); while ((wlength =
strcspn(wline, separators)) > 0) { if (olength + 1 + wlength
> OUT_LENGTH) { printf("%.*s\n", olength, oline); olength =
0; if (wlength >= OUT_LENGTH) { printf("%.*s\n", wlength,
wline); wline += wlength; wlength = 0; } } if (wlength > 0)
{ if (olength > 0) oline[olength++] = ' ';
strncpy(&oline[olength], wline, wlength); olength +=
wlength; wline += wlength; } wline += strspn(wline,
separators); } } if (olength > 0) printf("%.*s\n", olength,
oline); return 0; }

关于c - 用空格替换换行符并按特定行长度对单词进行排序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19944635/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com