1

对于学校的作业,我们必须使用结构来制作矩阵,该矩阵可以为无限量的矩阵存储无限量的点。(理论上无限)

对于作业,我决定使用 calloc 和 realloc。矩阵的大小如何变化:每次达到其点的限制时,它的大小都会翻倍(因此它从 1 开始,然后到 2,然后是 4,依此类推)。每次添加矩阵时,它的大小也会翻倍。

这就是我的问题所在。添加初始矩阵后,它会添加第二个矩阵名称和点,它给了我以下信息:

B???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????

B 是我想要的部分(因为我稍后会使用 strcmp),但是 ? 标记不应该在那里。(明显地)

我不确定它为什么会这样做。由于代码是模块化的,因此要获得其中的一部分来准确显示它是如何进行的并不是很容易。

注意:我可以通过它的方法访问矩阵的点:(MyMatrix[1].points[0].x_cord;这只是一个例子)

产生问题的示例代码:

结构:

 struct matrice {
    char M_name[256];
    int num_points[128];
    int set_points[128];
    int hasValues[1];
    struct matrice_points * points;
} * MyMatrix;
struct matrice_points {
    int set[1];
    double cord_x;
    double cord_y;
};

设置矩阵功能:

void setupMatrix(){

    MyMatrix = calloc(1, sizeof(*MyMatrix));
    numMatrix = 1;

}

增长矩阵功能:

void growMatrix(){

    MyMatrix = realloc(MyMatrix, numMatrix * 2 * sizeof(*MyMatrix));
    numMatrix = numMatrix * 2;

}

添加矩阵函数,在矩阵增长一次后输出此问题。

void addMatrix(char Name, int Location){

    int exists = 0;
    int existsLocation = 0;
    for (int i = 0; i < numMatrix; i++){
        if (strcmp(MyMatrix[i].M_name, &Name) == 0){
            exists = 1;
            existsLocation = i;
        }
    }

    *MyMatrix[Location].M_name = Name;
    printf("Stored Name: %s\n", MyMatrix[Location].M_name);
    *MyMatrix[Location].num_points = 1;
    *MyMatrix[Location].set_points = 0;
    *MyMatrix[Location].hasValues = 1;
    MyMatrix[Location].points = calloc(1, sizeof(*MyMatrix[Location].points));

}
4

3 回答 3

0

尝试在数据末尾添加“\0”。

于 2011-03-19T09:52:07.973 回答
0
*MyMatrix[Location].M_name = Name;

您在此处复制单个字符,而不是字符串。如果你想要一个字符串,Name应该定义为char *,并且你应该使用strcpy.

于 2011-03-19T09:55:14.183 回答
0
void addMatrix(char Name, int Location)

char Name表示单个char,即整数类型的量。char只是一个数字,根本不是字符串。

当你这样做时:

strcmp(..., &Name)

您假设存储一个字符的位置代表一个有效的 C 字符串。这是错误的,没有理由应该是这种情况。如果你想将一个 C 字符串传递给这个函数,你需要像这样声明它:

void addMatrix(char *Name, int Location)

然后,您需要将该 C 字符串复制到矩阵结构中的适当位置。它应该看起来像:

strncpy(... .M_name, Name, max_number_of_chars_you_can_store_in_M_Name);

这些字段定义在您的结构中也很奇怪:

int num_points[128];
int set_points[128];
int hasValues[1];

这意味着您的结构将包含一个名为 num_points 的 128 个整数数组,另一个名为 set_points 的 128 个整数数组,以及一个名为 hasValues 的一个整数(奇怪)数组。如果您只需要存储总点数和设定点数,以及指示是否存储值的标志,则定义应为:

int num_points;
int set_points;
int hasValues;

并更正您的addMatrix功能中的分配。

如果您确实需要这些数组,那么您的分配也是错误的。

请打开编译器中的所有警告。

于 2011-03-19T09:58:18.260 回答