- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我有一个字符串数组,我想在用户输入字符串时动态更改这些字符串。这个二维数组有一个固定的大小,比如说 char A[N][BUFF_MAX]
将存储N
每个字符串的大小最多为 BUFF_MAX
.我想让这个数组循环,也就是说,最近的输入应该存储在A[0]
中等等。
到目前为止,我在执行上述内容时没有任何问题。当用户输入超过 N
时,我的问题就出现了字符串。此时我想存储last N
输入并丢弃其余部分以仅使用 N
细胞。可以使用 strcpy
完成移位.
现在,我想用字符串编号打印这个数组。例如,如果用户输入 M
字符串,其中 M < N
字符串,它应该打印
1 string_1
2 string_2
: :
M string_M
但是,如果M > N
然后它应该打印
M-N string_(M-N)
M-N+1 string_(M-N+1)
: :
M string_M
我已经尝试了好几样东西,但我不能完全让它发挥作用。这是我的代码的简化版本。
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#define N 10 /* max size of array */
#define BUFF_MAX 50 /* max size of buffer */
int M = 0; /* input count */
char A[N][BUFF_MAX]; /* should i initialize this? */
void displayArray() {
for (int h = 0; h < M; h++) { /* print the elements */
printf("%2d %s\n", h + 1, A[h]); /* this doesn't number properly */
/* and needs to be modified */
}
}
int main(void) {
while(1) { /* keep reading from the user */
char input[BUFF_MAX];
fgets(input, sizeof(input), stdin); /* read input from user */
strcpy(A[M], input); /* copy input into array */
M++; /* i might need some modulo here */
if (M >= N) { /* if user inputs more than N */
for (int i = N - 1; i > 0; i--) { /* shift the array */
strcpy(A[i], A[i - 1]);
}
}
if (!strcmp(input, "hist"))
displayArray();
}
}
感谢您的帮助。
最佳答案
这是你的代码,有一些变化
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#define N 10 /* max size of array */
#define BUFF_MAX 50 /* max size of buffer */
int M = 0; /* input count */
char A[N][BUFF_MAX]; /* should i initialize this? */
void displayArray()
{
int h;
//you need to change the condition of for in order to print
// the adequate number of elements
for ( h = 0; h < (M>N?N:M); h++) /* print the elements */
{
printf("%2d %s\n", h + 1, A[h]); /* this doesn't number properly */
/* and needs to be modified */
}
}
int main(void)
{
while(1) /* keep reading from the user */
{
char input[BUFF_MAX];
fgets(input, sizeof(input), stdin); /* read input from user */
// you need to add the condition below because the fgets include the newline
// if the user hit enter after each input
if(input[strlen(input)-1]=='\n')
input[strlen(input)-1]='\0';
// note that the subscript of the array is changed in order to
// get the desired input A[ M % N ]
// so the sequence of index will be 0 1 2 ... N-1 0 1 2 etc.
strcpy(A[M % N], input); /* copy input into array */
M++; /* i might need some modulo here */
if (!strcmp(input, "hist"))
displayArray();
}
return 0;
}
请记住,您的代码没有用于退出程序的断点。您需要在 while
循环中添加一个 break
或 return
或 goto
来完成它的执行!!
关于循环遍历带有全局计数器的 C 数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28078708/
我的应用程序中有一个 settings.php 页面,它使用 $GLOBALS 来存储网络应用程序中使用的配置。 例如,他是我使用的一个示例设置变量: $GLOBALS["new_login_page
我正在尝试编译我们在 OS 类上获得的简单操作系统代码。它在 Ubuntu 下运行良好,但我想在 OS X 上编译它。我得到的错误是: [compiling] arch/i386/arch/start
我知道distcp无法使用通配符。 但是,我将需要在更改的目录上安排distcp。 (即,仅在星期一等“星期五”目录中复制数据),还从指定目录下的所有项目中复制数据。 是否有某种设计模式可用于编写此类
是否可以在config.groovy中全局定义资源格式(json,xml)的优先级,而不是在每个Resource上指定?例如,不要在@Resource Annotation的参数中指定它,例如: @R
是否有一些简单的方法来获取大对象图的所有关联,而不必“左连接获取”所有关联?我不能只告诉 Hibernate 默认获取 eager 关联吗? 最佳答案 即使有可能有一个全局 lazy=false(谷歌
我正在尝试实现一个全局加载对话框...我想调用一些静态函数来显示对话框和一些静态函数来关闭它。与此同时,我正在主线程或子线程中做一些工作...... 我尝试了以下操作,但对话框没有更新...最后一次,
当我偶然发现 this question 时,我正在阅读更改占位符文本。 无论如何,我回去学习了占位符。一个 SO 的回答大致如下: Be careful when designing your pl
例如,如果我有这样的文字: "hello800 more text 1234 and 567" 它应该匹配 1234 和 567,而不是 800(因为它遵循 hello 的 o,这不是一个数字)。 这
我一直在尝试寻找一种无需使用 SMS 验证系统即可验证电话号码(Android 和 iPhone)的方法。原因纯粹是围绕成本。我想要一个免费的解决方案。 我可以安全地假设 Android 操作系统会向
解决此类问题的规范 C++ 设计模式是什么? 我有一些共享多个类的多线程服务器。我需要为大多数类提供各种运行时参数(例如服务器名称、日志记录级别)。 在下面的伪 C++ 代码中,我使用了一个日志记录类
这个问题在这里已经有了答案: Using global variables in a function (25 个答案) 关闭 9 年前。 我是 python 的新手,所以可能有一个简单的答案,但我
这个问题在这里已经有了答案: 关闭 10 年前。 Possible Duplicate: Does C++ call destructors for global and class static
我正在尝试使用 Objective-C 中的 ArrayList 的等价物。我知道我必须使用 NSMutableArray。我想要一个字符串列表 (NSString)。关键是我的列表应该可以从我类(c
今天刚开始学习 Android 开发,我找不到任何关于如何定义 Helper 类或将全局加载的函数集合的信息,我会能够在我创建的任何 Activity 中使用它们。 我的计划是创建(至少目前)2 个几
为什么这段代码有效: var = 0 def func(num): print num var = 1 if num != 0: func(num-1) fun
$GLOBALS["items"] = array('one', 'two', 'three', 'four', 'five' ,'six', 'seven'); $alter = &$GLOBALS
我想知道如何实现一个可以在任何地方使用您自己的设置的全局记录器: 我目前有一个自定义记录器类: class customLogger(logging.Logger): ... 该类位于一个单独的
我需要使用 React 测试库和 Jest 在我的测试中模拟不同的窗口大小。 目前我必须在每个测试文件中包含这个beforeAll: import matchMediaPolyfill from 'm
每次我遇到单例模式或任何静态类(即(几乎)只有静态成员的类)的实现时,我想知道这是否实际上不是一种黑客行为,因此只是为了设计而严重滥用类和实例的原则单个对象,而不是设计类和创建单个实例。对我来说,看起
这个问题在这里已经有了答案: Help understanding global flag in perl (2 个回答) 7年前关闭。 my $test = "There was once an\n
我是一名优秀的程序员,十分优秀!