- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
更新:弄清楚了...错误代码底部的更新代码按其应有的方式进行。谢谢大家
我正在尝试将 input.txt 文件中的行读入三个矩阵,一个用于名字,一个用于姓氏,一个用于成绩。
成绩矩阵很好,我无法计算出姓名矩阵。
运行时我得到输出:
Row 1, column 1 of grades: 1.30
Row 1, column 1 of first: P
Row 1, column 1 of last: V
这对于字符数组来说是不正确的。
我认为问题在于数组第一个和最后一个如何初始化。第一个例子在这里:
//Store first token in first[][]
if(counter == 1){
first[i][j] = token;
}
这是将名为 token 的字符串存储到数组 first[][] 的索引 [0][0] 中的正确方法吗?
初始化字符串矩阵的正确方法是什么?我需要第一行包含名字,第二行包含第二个名字,等等
我很难想象一个实际的矩阵与它们在 RAM 中的存储方式(我知道数组的名称是指向数组第一个索引的指针,但是当它到达二维数组时,我可以'不要可视化指针在 RAM 中的结构)
输入.txt文件:
Alice Wonderland 1.3 2 3 4 5.5
Bob Marley 7 8 9.8 10 11.5
Charley Manson 12 13.5 14 15 16
代码:
/* Input: input file name, as char array;
matrix of names, and matrix of grades
Functionality: opens the file, extracts names into matrix of names,
extracts grades into the matrix of grades;
Output: 0 if everything went well, -1 otherwise
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define MAXNUMSTUDENT 100
#define MAXNUMGRADES 100
//#define DEBUG1
#define DEBUG2
char first[MAXNUMSTUDENT][1]; //One first name per row (one column)
char last[MAXNUMSTUDENT][1]; //One last name per row (one column)
float grades[MAXNUMGRADES][MAXNUMGRADES];
float grade;
int counter = 1; //Counts the token number (First two tokens = names, rest = grades)
int i = 0; //Row index
int j = 0; //Column index for first[][], last[][]
int n = 0; //Row index for grades[][]
int m = 0; //Column index for grades[][]
int main(void)
{
//Initialize all arrays to 0
// First[i][j]
for(i=0; i<MAXNUMSTUDENT; i++){
first[i][j] = "0";
for(j=0; j<=1; j++){
first[i][j] = "0";
}
}
// Last[i][j]
for(i=0; i<MAXNUMSTUDENT; i++){
last[i][j] = "0";
for(j=0; j<=1; j++){
last[i][j] = "0";
}
}
// grades[n][m]
for(n=0; n<MAXNUMGRADES; n++){
grades[n][m] = 0;
for(m=0; m<MAXNUMGRADES; m++){
grades[n][m] = 0;
}
}
//Reset indexes
i=0;
j=0;
n=0;
m=0;
FILE * fp;
char * line = NULL;
size_t len = 0;
ssize_t read;
fp = fopen("gradebook.txt", "r"); //Name of input file goes here
if (fp == NULL)
return -1;
//Loops through each line of gradebook (1 loop = 1 line)
while ((read = getline(&line, &len, fp)) != -1) {
/**** AT THIS POINT YOU HAVE A STRING CALLED line *****/
char delim[] = " "; //delimiters are space comma and hyphen
char* token;
//For loop tokenizes string, runs until there are no more tokens
for (token = strtok(line, delim); token; token = strtok(NULL, delim))
{
#ifdef DEBUG1
printf("Retrieved line of length %zu :\n", read);
printf("%s\n", line);
printf("token=%s counter=%d i=%d j=%d n=%d m=%d\n\n", token, counter, i, j, n, m);
#endif
//Store first token in first[][]
if(counter == 1){
first[i][j] = token;
}
//Store second token in last[][]
if(counter == 2){
last[i][j] = token;
//Increment row of first[][] and last[][] (for next line)
i++;
}
//Store the rest of tokens in grades[][]
if(counter > 2){
grade = atof(token);
grades[n][m] = grade;
//Increment column of grades[][]
m++;
}
//Counter for token number
counter++;
}
//Increment row of grades[][]
n++;
//Reset counter
counter = 1;
//Reset column index of grades[][]
m = 0;
}
//Test arrays
printf("Row 1, column 1 of grades: %.2f\n", grades[0][0]);
printf("Row 1, column 1 of first: %c\n", first[0][0]);
printf("Row 1, column 1 of last: %c\n", last[0][0]);
fclose(fp);
if (line)
free(line);
return 0;
}
谢谢。
更新的代码:
/* File : extractgrades.c *
* team : SnS *
* Date : 11-20-16 */
/* Input: input file name, as char array;
matrix of names, and matrix of grades
Functionality: opens the file, extracts names into matrix of names,
extracts grades into the matrix of grades;
Output: 0 if everything went well, -1 otherwise
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define MAXNUMSTUDENT 100
#define MAXNUMGRADES 100
//Comment out to turn off debugging
#define DEBUG1
#define DEBUG2
char first[MAXNUMSTUDENT][MAXNUMSTUDENT];
char last[MAXNUMSTUDENT][MAXNUMSTUDENT];
float grades[MAXNUMGRADES][MAXNUMGRADES];
int numberofscores; //Number of scores
int numberofstudents;
int maxnumberofscores;
int main(void)
{
char first[MAXNUMSTUDENT][MAXNUMSTUDENT] = {{0}};
char last[MAXNUMSTUDENT][MAXNUMSTUDENT] = {{0}};
float grades[MAXNUMGRADES][MAXNUMGRADES] = {{0}};
float grade;
int i; //Row index
int j; //Column index for first[][], last[][]
int n; //Row index for grades[][]
int m; //Column index for grades[][]
int counter; //Counts the token number (First two tokens = names, rest = grades)
//Initialize indexes
counter=1;
numberofscores=0;
i=0;
j=0;
n=0;
m=0;
FILE * fp;
char * line = NULL;
size_t len = 0;
ssize_t read;
fp = fopen("gradebook.txt", "r"); //Name of input file goes here
if (fp == NULL)
return -1;
//Loops through each line of gradebook (1 loop = 1 line)
while ((read = getline(&line, &len, fp)) != -1) {
char delim[] = " "; //delimiters are space comma and hyphen
char * token;
//For loop tokenizes string, runs until there are no more tokens
for (token = strtok(line, delim); token; token = strtok(NULL, delim))
{
#ifdef DEBUG1
printf("Retrieved line of length %zu :\n", read);
printf("%s\n", line);
printf("token=%s counter=%d i=%d j=%d n=%d m=%d\n\n", token, counter, i, j, n, m);
#endif
//Store first token in first[][]
if(counter == 1){
strcpy(first[i], token);
}
//Store second token in last[][]
if(counter == 2){
strcpy(last[i], token);
//Increment row of first[][] and last[][] (for next line)
i++;
}
//Store the rest of tokens in grades[][]
if(counter > 2){
grade = atof(token);
grades[n][m] = grade;
//Increment column of grades[][]
m++;
}
//Counter for token number
counter++;
}
//Save pseudo max number of scores
maxnumberofscores = counter;
if(counter >= maxnumberofscores){
maxnumberofscores = counter;
}
printf("maxnumberofscores: %d\n", maxnumberofscores);
//Increment row of grades[][]
n++;
//Reset column index of grades[][]
m = 0;
//Reset counter
counter = 1;
}
//Get actual max number of scores
numberofscores = maxnumberofscores - 3;
//Get number of students
numberofstudents = i;
//Debug sandwich to test everything
#ifdef DEBUG2
//Test arrays
printf("Row 1, column 1 of grades: %.2f\n", grades[0][0]);
printf("Row 1, column 1 of first: %c\n", first[0][0]);
printf("Row 1, column 1 of last: %c\n", last[0][0]);
//Print all arrays
i=0;
j=0;
n=0;
m=0;
//Print grades[n][m]
for(n=0; n<numberofstudents; n++){
printf("\n");
for(m=0; m<numberofscores; m++){
printf("grades[%d][%d]: %.2f\n", n, m, grades[n][m]);
}
}
//Print first[i][j]
for(i=0; i<numberofstudents; i++){
printf("first[%d]: %s\n", i, first[i]);
}
//Print last[i][j]
for(i=0; i<numberofstudents; i++){
printf("last[%d]: %s\n", i, last[i]);
}
//Print number of scores, number of students
printf("Max number of scores = %d\n", numberofscores);
printf("Number of students: %d\n", numberofstudents);
#endif
fclose(fp);
if (line)
free(line);
return 0;
}
最佳答案
first[i][j] = "0";
first[i][j]
是一个char
(不是字符串),改为
first[i][j] = '0';
Is this the proper way to store a string called token into the index [0][0] of the array first[][]?
first[i][j] = token;
不,首先,您不能使用 =
分配给数组,您需要使用诸如 strcpy
之类的函数,或者更好的是更安全的版本,例如 strlcpy
或 snprintf
。
第二,你的数组只有一个字符的空间:
char first[MAXNUMSTUDENT][1];
您需要更多空间:
char first[MAXNUMSTUDENT][100];
此外,您在最后释放了line
,但是每次调用getline
时都需要调用free
以避免内存占用泄漏:
while ((read = getline(&line, &len, fp)) != -1) {
...
free(line);
}
关于C - 创建字符串矩阵时遇到问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40690111/
假设我有两个矩阵,每个矩阵有两列和不同的行数。我想检查并查看一个矩阵的哪些对在另一个矩阵中。如果这些是一维的,我通常只会做 a %in% x得到我的结果。 match似乎只适用于向量。 > a
关闭。这个问题是opinion-based .它目前不接受答案。 想要改进这个问题? 更新问题,以便 editing this post 可以用事实和引用来回答它. 关闭 9 个月前。 Improv
我只处理过 DirectX 矩阵 我读过一些文章,说不能将 DirectX 矩阵数学库用于 openGL 矩阵。 但我也读过,如果你的数学是一致的,你可以获得类似的结果。那只会让我更加困惑。 任何人都
我编写了一个C++代码来解决线性系统A.x = b,其中A是一个对称矩阵,方法是首先使用LAPACK(E)对角矩阵A = V.D.V^T(因为以后需要特征值),然后求解x = A^-1.b = V^T
我遇到了问题。我想创建二维数组 rows=3 cols=2我的代码如下 int **ptr; int row=3; int col=2; ptr=new int *[col]; for (int i=
我有一个 3d mxnxt 矩阵,我希望能够提取 t 2d nxm 矩阵。在我的例子中,我有一个 1024x1024x10 矩阵,我想要 10 张图像显示给我。 这不是 reshape ,我每次只需要
我在 MATLAB 中有一个 3d 矩阵 (n-by-m-by-t) 表示一段时间内网格中的 n-by-m 测量值.我想要一个二维矩阵,其中空间信息消失了,只剩下 n*m 随着时间 t 的测量值(即:
作为一个简化的示例,我有一个 3D numpy 矩阵,如下所示: a = np.array([[[1,2], [4,np.nan], [7,
作为一个简化的示例,我有一个 3D numpy 矩阵,如下所示: a = np.array([[[1,2], [4,np.nan], [7,
使用 eigen2 , 并给定一个矩阵 A a_0_0, a_0_1, a_0_2, ... a_1_0, a_1_0, a_1_2, ... ... 和一个矩阵B: b_0_0, b_0_1, b_
我想知道如何获得下面的布局。 在中型和大型设备上,我希望有 2 行和 2 列的布局(2 x 2 矩阵)。 在小型(和超小型)设备上或调整为小型设备时,我想要一个 4 行和 1 列的矩阵。 我将通过 a
有什么方法可以向量化以下内容: for i = 1:6 te = k(:,:,:,i).*(c(i)); end 我正在尝试将 4D 矩阵 k 乘以向量 c,方法是将其
如何从填充有 1 和 0 的矩阵中抽取 n 个随机点的样本? a=rep(0:1,5) b=rep(0,10) c=rep(1,10) dataset=matrix(cbind(a,b,c),nrow
我正在尝试创建一个包含 X 个 X 的矩阵。以下代码生成从左上角到右下角的 X 对 Angular 线,而不是从右上角到左下角的 X 对 Angular 线。我不确定从哪里开始。是否应该使用新变量创建
我想在 python 中创建一个每行三列的矩阵,并能够通过任何一行对它们进行索引。矩阵中的每个值都是唯一的。 据我所知,我可以设置如下矩阵: matrix = [["username", "name"
我有点迷茫 我创建了一个名为 person 的类,它具有 age 和 name 属性(以及 get set 方法)。然后在另一个类中,我想创建一个 persons 数组,其中每个人都有不同的年龄和姓名
我有 n 个类,它们要么堆叠,要么不堆叠。所有这些类都扩展了同一个类 (CellObject)。我知道更多类将添加到此列表中,我想创建一种易于在一个地方操纵“可堆叠性”的方法。 我正在考虑创建一个矩阵
我有一个包含 x 个字符串名称及其关联 ID 的文件。本质上是两列数据。 我想要的是一个格式为 x x x 的相关样式表(将相关数据同时作为 x 轴和 y 轴),但我想要 fuzzywuzzy 库的函
机器学习与传统编程的一个重要区别在于机器学习比传统编程涉及了更多的数学知识。不过,随着机器学习的飞速发展,各种框架应运而生,在数据分析等应用中使用机器学习时,使用现成的库和框架成为常态,似乎越来越不需
当我在 julia 中输入这个错误跳转但我不知道为什么,它应该工作。/ julia> A = [1 2 3 4; 5 6 7 8; 1 2 3 4; 5 6 7 8] 4×4 Array{Int64,
我是一名优秀的程序员,十分优秀!