繁体   English   中英

将结构的2D数组传递给函数

[英]passing 2D array of structure to a function

这是我的结构结构查找

{
   char action;
   int state;
};

行和列的值是已知的,但它们是从文件中读取的。

main()   
{
   // other initialization...then
   lookup* table[rows][columns];
   for (int i = 0; i < rows;i++)
   {    
        for (int j = 0; j < columns;j++)
        {   
             table[i][j]=new (lookup);
        }
   }
}

然后我将值分配给表的每个元素,现在我想将此表传递给另一个函数以进行进一步的操作,例如,

void output(lookup* table)
{
     // print values stored in table 
}

我如何将表及其所有内容从main()传递到output()函数? 感谢帮助..

将参数声明为双指针(假设您收到一维指针数组)。 由于此类数组连续位于内存中,因此您可以计算当前元素的位置。

void output(lookup** table, int rows, int cols)
{
  lookup* current_lookup = NULL;
  for (int i = 0; i < rows; i++)
  {   
    for (int j = 0; j < cols; j++)
    {
      current_lookup = table[i*cols + j];
      printf("Action: %c, state: %d\n", current_lookup->action, current_lookup->state);
    }
  }
}

您可以通过传递数组的第一个元素来调用它:

int main()   
{
   lookup* table[rows][columns];

   //....

   output(table[0]);
   return 0;
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM