简体   繁体   English

C ++将动态大小的2D数组传递给函数

[英]C++ passing Dynamically-sized 2D Array to function

I'm trying to figure out how to pass 2D array, which is constructed dynamically to a function. 我试图弄清楚如何传递2D数组,该数组是动态构造为函数的。 I know that number of columns must be specified, but it my case it depends on user input. 我知道必须指定列数,但就我而言,这取决于用户输入。

Are there any workarounds? 有什么解决方法吗?

Example: 例:

// Some function
void function(matrix[i][j]) {
// do stuff
}
// Main function
int N;
cout << "Size: ";
cin >> N;

int matrix[N][N];

for (int i=0;i<N;i++) { // 
 for (int j=0;j<N;j++) { 
  cin >> matrix[N][N];
 }
}

sort(matrix);

You get the idea :) 你明白了:)

If you're on C++, the reasonable options are to: 如果您使用的是C ++,则合理的选择是:

  • use boost::multi_array (recommended), or 使用boost::multi_array (推荐),或
  • make your own 2D array class. 制作自己的2D数组类。 Well, you don't have to, but encapsulating 2D array logic in a class is useful and makes the code clean. 好吧,您不必这样做,但是将2D数组逻辑封装在类中很有用,并且可以使代码清晰。

Manual 2D array indexing would look like this: 手动2D数组索引编制如下所示:

void func(int* arrayData, int arrayWidth) {
    // element (x,y) is under arrayData[x + y*arrayWidth]
}

But seriously, either wrap this with a class or enjoy that Boost already has that class ready for you. 但是请认真考虑,要么将其与课程包装在一起,要么享受Boost已经为您准备好该课程的乐趣。 Indexing this manually is tiresome and makes the code more unclean and error-prone. 手动对此进行索引很麻烦,并使代码更加不干净且易于出错。


edit 编辑

http://gcc.gnu.org/onlinedocs/gcc/Variable-Length.html says that C99 has one more solution for you: http://gcc.gnu.org/onlinedocs/gcc/Variable-Length.html说C99为您提供了另一种解决方案:

void func(int len, int array[len][len]) {
   // notice how the first parameter is used in the definition of second parameter
}

Should also work in C++ compilers, but I haven't ever used this approach. 应该也可以在C ++编译器中工作,但是我从未使用过这种方法。

In C++, the compiler can figure out the size, since it's part of the type. 在C ++中,编译器可以算出大小,因为它是类型的一部分。 Won't work with dynamically sized matrices though. 但是,无法使用动态尺寸的矩阵。

template<size_t N, size_t M>
void function(int (&matrix)[N][M])
{
  // do stuff
}

EDIT: In GCC only, which is required for your code defining the array, you can pass variable-length arrays directly: 编辑:仅在GCC中,这是定义数组的代码所必需的,您可以直接传递可变长度数组:

void func(int N, int matrix[N][N])
{
  //do stuff
}

See the gcc documentation 请参阅gcc文档

/*******************************************************\
*                                                       *
* I am not claiming to be an expert, but I think I know *
* a solution to this one. Try using a Vector Container  *
* instead of an array. Here is an example below:        *
*                                                       *
* Load the target file with a Multiplication Table      *
*                                                       *
*                                                       *
\*******************************************************/

// reading a text file
#include <iostream>
#include <fstream>
#include <string>
#include <vector>


std::string user_file;
int user_size = 2;
void array_maker(int user_size, std::string user_file);

int main () {
  std::cout << "Enter the name of the file for your data: ";
  std::cin >> user_file;
  std::cout << std::endl;
  std::cout << "Enter the size for your Multiplication Table: ";
  std::cin >> user_size;

  // Create the users Multiplication data
     array_maker(user_size, user_file);

  return (0);
}

void array_maker(int user_size, std::string user_file)
{
  // Open file to write data & add it to end of file
  std::ofstream target_file(user_file,std::ios::out | std::ios::app);

  // Declare the vector to use as a runtime sized array
  std::vector<std::vector<int>> main_array;

  // Initialize the size of the vector array
  main_array.resize(user_size+1); // Outer Dimension
  for (int i=0; i <= user_size; ++i) // Inner Dimension
  {
    main_array[i].resize(user_size+1);
  }

  for (int i=0; i<=user_size; ++i) 
  {
    for (int j=0; j<=user_size; ++j)
    {
      main_array[i][j] = i * j;
      // output line to current record in file
      target_file << i << "*" 
              << j << "=" 
              << main_array[i][j] << " "
              << "EOR"   // End of Record 
              << std::endl;

    } // Close Inner For
  } // Close Outer For
  // close file
  target_file.close();

} // Close array_maker function

to pass multi dimensional arays into method the compiler needs to know the depth of each field, so one solution is to use templates and call method in a normal way and the compiler will guess the size of each field. 为了将多维数组传递给方法,编译器需要知道每个字段的深度,因此一种解决方案是以常规方式使用模板和调用方法,编译器将猜测每个字段的大小。

template <size_t m>
void method(int M[][m])
{
    for(int i=0; i<m; ++i)
        for(int j=0; j<m; ++j)
        {
            // do funny stuff with M[i][j]
        }
}

int main()
{
    int M[5][5] = { {1,0,1,1,0}, {0,1,1,1,0}, {1,1,1,1,1}, {1,0,1,1,1}, {1,1,1,1,1} };
    method(M);
    // also you can call with method<5>(M)
    // if you have different sizes for each dimension try passing them in args
    return 0;
}

You can do void function (int** __matrix, int32_t __row, int32_t __column) __row - max rows __column - max columns. 您可以执行void函数(int ** __matrix,int32_t __row,int32_t __column)__row-最大行__column-最大列。

You will need those params to find out the limits of the array. 您将需要那些参数来找出数组的限制。

Just add another parametrs to your function - row_number and column_number . 只需在函数中添加另一个参数row_numbercolumn_number Arrays are not object in C++ so they don't store any additional information about themselfs. 数组不是C ++中的对象,因此它们不存储有关其自身的任何其他信息。

If you pass in the array identifier (as a pointer to a pointer) you will need to use pointer arithmetic: 如果传入数组标识符(作为指向指针的指针),则需要使用指针算法:

void function(int** matrix, int num_rows, int num_cols) {
    Assert(matrix!=NULL && *matrix!=NULL && num_rows>0 && num_cols>0);

    for(int i=0; i<num_rows; i++) {
        for(int j=0; j<num_cols; j++) {
            // cannot index using [] like matrix[i][j]
            // use pointer arithmetic instead like:
            // *(matrix + i*num_cols + j)

        }
    }
}
int r, c
int *matrix = new int[r,c];
for (int i = 0; i < r; i++)
    {
        /*cout << "Enter data" << endl;*/
        for (int j = 0; j < c; j++)
        {
            cin >> matrix[i,j];

        }
    }

虚函数(int&matrix [] [])

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

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