gpt4 book ai didi

c - 将二维数组转换为一维数组

转载 作者:太空宇宙 更新时间:2023-11-04 07:05:07 27 4
gpt4 key购买 nike

我正在尝试用 C 编写一个程序,将二维数组(特别是矩阵)转换为一维数组。例如,如果我们有一个包含 L 行和 C 列的矩阵,它应该变成单行 newL=L*C。因此,如果矩阵有 3 行和 4 列,则新数组的大小为 3*4=12。

The matrix should turn to this:

1 2
--> 1 2 3 4
3 4

我现在面临的问题是如何在没有随机值或重复值的情况下将矩阵分配给数组。

The piece of code I'm concerned with, goes like this:

for(k=1;k<=t;k++)
{
for(i=1;i<=l;i++)
{
for(j=1;j<=c;j++)
{
v[k]=m[i][j];
}
}
}

k,i 和 j 是矩阵(二维数组)和数组的计数器。其中两个; i 和 j 是矩阵的计数器,k 是数组的计数器。请注意,它们中的每一个都从 1 开始并达到其大小,在这个大小中,我将使用 2 行和 2 列作为矩阵,因此数组的大小为 4(2*2)。

  • l 是数组中的行数。
  • c 是数组中的列数。
  • t 是数组的大小。 t=l*c

Executing the code gives me this as a return:

1 2
--> 4 4 4 4
3 4

Simply said, the piece of code will ALWAYS give the last value of the matrix to the array. So if I replace 4 with 5 in the matrix, the array will have 5 5 5 5.

编辑:

这里是完整的代码来理解我正在尝试做的事情:

#include <stdio.h>
#include <stdlib.h>
int main()
{
int c,i,j,l,k,t;
printf("Donner le nombres des lignes: ");
scanf("%d",&l);
printf("Donner le nombres des colonnes: ");
scanf("%d",&c);
int m[l][c];
t=l*c;
int v[t];
for(i=0;i<l;i++)
{
for(j=0;j<c;j++)
{
printf("Donner m[%d][%d]: ",i+1,j+1);
scanf("%d",&m[i][j]);
}
}
for(i=0;i<l;i++)
{
for(j=0;j<c;j++)
{
printf("%d\t",m[i][j]);
}
printf("\n");
}
printf("\n\n\n\n");
for(k=1;k<=t;k++)
{
for(i=1;i<=l;i++)
{
for(j=1;j<=c;j++)
{
v[k]=m[i][j];
}
}
}
for(k=0;k<t;k++)
{
printf("%d\t",v[k]);
}
system("pause");
}

谢谢大家的帮助,我找到了正确的方法。

最佳答案

  1. 你不需要外循环
  2. 数组索引在 C 中是从零开始的

因此,我们有:

    for(k = 0, i = 0; i < o; i++)
{
for(j = 0; j < p; j++)
{
v[k++] = m[i][j];
}
}

其中 op - 矩阵的维度 m

关于c - 将二维数组转换为一维数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33747256/

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