- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
这是我的问题陈述:
我有一个与部分代码相关的小问题,我找不到合适的解决方案。同样,我不一定要寻求完整的解决方案,我只是遇到了死胡同。我需要从文件行中读取(不知道它们的长度)找到一行的最大长度并在每行的单词之间均匀地添加空格,以便它们完全对齐(所有行的大小与最大长度相同一个)。
到目前为止,这是我的代码:
#include <stdio.h>
#include <stdlib.h>
int main() {
FILE *f;
char *word;
int j, i, m, n, c, k, z;
char aux[255] = "", aux1[255];
i = 0;
j = 0;
char file[100][100];
char s[100];
f = fopen("user_input.txt", "r");
m = 0;
while (fgets(file[i], sizeof(file[i]), f)) {
if (m < strlen(file[i]) - 1)
m = strlen(file[i]) - 1;
i++;
}
for (j = 0; j < i; j++) {
n = 0;
for (k = 0; k < strlen(file[j]); k++)
if (file[j][k] == ' ')
n++;
c = (m - strlen(file[j])) / n;
for (z = 0; z < c; z++)
aux[z] = ' ';
for (k = 0; k < strlen(file[j]); k++)
if (file[j][k] == ' ') {
strcpy(aux1, file[j] + k + 1);
strcat(file[j], aux);
strcat(file[j], aux1);
}
printf("%s", file[j]);
}
}
最佳答案
您的代码因多种原因而损坏:
<string.h>
fopen()
成功,在打开文件失败时导致未定义的行为。c = (m - strlen(file[j])) / n;
的计算向下舍入。在许多情况下,您不会插入足够的空格来对全文进行调整。aux
没有正确地以 null 终止,它将不断增长,直到为任何给定行插入最大数量的空格。{}
对于非平凡的陈述,很难阅读,也很容易被破解。这是一个没有这些限制的修改版本:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main() {
const char *filename = "user_input.txt";
FILE *f;
char *line;
int c, i, len, maxlen, skip, nw, spaces, ns;
/* open the file */
if ((f = fopen(filename, "r")) == NULL) {
fprintf(stderr, "cannot open %s\n", filename);
return 1;
}
/* first pass: determine the maximum line length */
for (maxlen = len = 0;;) {
c = getc(f);
if (c == '\n' || c == EOF) {
if (maxlen < len)
maxlen = len;
len = 0;
if (c == EOF)
break;
} else {
len++;
}
}
/* allocate the line buffer: maxlen characters plus newline plus '\0' */
if ((line = malloc(maxlen + 2)) == NULL) {
fprintf(stderr, "cannot allocate memory for %d bytes\n", maxlen + 2);
fclose(f);
return 1;
}
/* second pass: read one line at a time */
rewind(f);
while (fgets(line, maxlen + 2, f)) {
len = strlen(line);
if (len > 0 && line[len - 1] == '\n') {
/* strip the newline if any */
line[--len] = '\0';
}
/* skip and output initial spaces */
for (skip = 0; line[skip] == ' '; skip++) {
putchar(line[skip]);
}
/* count the words */
for (nw = 0, i = skip; i < len; i++) {
if (line[i] == ' ')
nw++;
}
/* output the text, expanding spaces */
spaces = maxlen - len;
for (i = skip; i < len; i++) {
if (line[i] == ' ') {
ns = spaces / nw;
printf("%*s", ns, "");
spaces -= ns;
nw--;
}
putchar(line[i]);
}
putchar('\n');
}
free(line);
fclose(f);
return 0;
}
关于完全证明文件中的文本的 C 程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51822633/
1。 Set 的 parallelStream 没有使用足够的线程。 Java8 parallelStream 不能完全并行工作。在我的计算机中,当任务数小于处理器数时,java8 集的 parall
我想将位置发送到 Google Geocoding API,因此我想用 + 替换文本中的任何空格或逗号(因为可以接收)。 例如,所有这些样本应返回 Glentworth+Ireland: Glentw
所以我需要为将要上传的图像文件生成较小的预览,并且我必须在每个文件名的末尾附加“_preview”。 目前我正在这样做: uploadFile.map((file) => { if (fi
我们可以用参数定义类型同义词,这在与实际类型一起使用时效果很好: type MyType t = t String String data Test a b = Test a b f :: MyTyp
给定一个包含一些 TGraphic 后代的 Delphi TPicture,我需要计算像素颜色和不透明度。我认为我必须为每个类提供不同的实现,并且我认为我已经涵盖了 TPngImage。 32 位位图
我正在调试 Powershell 项目。我正在使用 Import-Module 从我的 C# dll 加载 PS 模块,一切正常。尽管调用 Remove-Module 并不会完全卸载模块,因为 DLL
有没有办法在ElasticSearch中要求完整(尽管不一定精确)匹配? 例如,如果一个字段具有术语"I am a little teapot short and stout",我想匹配" i am
我正在尝试根据日期范围连接两个表。 表A格式为: ID CAT DATE_START DATE_END 1 10 2018-01-01 2020-12-31 2
我最近加入了一家公司,在分析他们的环境时,我注意到 SharePoint web.config 的信任级别设置为“完全”。我知道这绝对是一个糟糕的做法,并且希望 stackoverflow 社区能够帮
我构建了一个完全依赖 AJAX 的 php/js 应用程序,因此没有任何内容是静态的。 我正在尝试找到一种方法来转换基于内容的广告,该广告使用 AJAX 交付的内容作为关键字。 Google 的 Ad
我正在尝试根据日期范围连接两个表。 表A格式为: ID CAT DATE_START DATE_END 1 10 2018-01-01 2020-12-31 2
我熟悉 FileSystemWatcher 类,并使用它进行了测试,或者我使用快速循环进行了测试,并在目录中列出了类型文件的目录列表。在这种特殊情况下,它们是 zip 压缩的 SDF 文件,我需要解压
按照 Disqus 上的教程进行操作时,评论框不会呈现。从 disqus 上找到的管理员看来,它的设置似乎是正确的。 var disqus_config = function () { this
是否可以使用 Cython 将 Python 3 应用程序完全编译/链接为可执行格式(当然假设所有使用的模块都是 cythonable)。 我在 Linux 下工作,我希望获得一个依赖性尽可能小的 E
我有一个 C# 控制台应用程序,而不是运行预构建步骤(以获取 NuGet 包)。 当我调试这个时,我想传入一个参数并显示控制台。当我不调试它时,我不想看到它。我什至不希望它在那里闪烁一秒钟。 我找到了
我在 n 个节点上有一个完整的 19 元树。我标记所有具有以下属性的节点,即它们的所有非根祖先都是最年长或最小的 child (包括根)。我必须为标记节点的数量给出一个渐近界限。 我注意到 第一层有一
我正在阅读一篇关于 Java Volatile 关键字的文章,遇到了一些问题。 click here public class MyClass { private int years;
一本书中写道——“如果问题 A 是 NP-Complete,则存在解决 A 的非确定性多项式时间算法”。但据我所知,"is"——NP 完全问题的答案可以在多项式时间内“验证”。我真的很困惑。能否使用非
考虑以下问题: 有N个硬币,编号为1到N。 你看不到它们,但是给出了关于它们的 M 个事实,形式如下: struct Fact { set positions int num_head
我想制作一个包装数字类型的类型(并提供额外的功能)。 此外,我需要数字和包装器可以隐式转换彼此。 到目前为止我有: template struct Wrapper { T value;
我是一名优秀的程序员,十分优秀!