我试图使用指针用随机数填充数组。到目前为止,这是我的代码:
#include <iostream>
#include <cstdlib>
#include <ctime>
#include <iomanip>
using namespace std;
const int mRows = 3;
const int mCols = 5;
void fillMatrix(int ** m_ptr_ptr, int, int);
int main()
{
unsigned seed;
seed = time(0);
srand(47);
int matrix[mRows][mCols];
int* matrix_ptr[mRows];
int** matrix_ptr_ptr = &matrix_ptr[0];
for (int i = 0; i < mRows; i++)
{
matrix_ptr[i] = &matrix[i][0];
}
fillMatrix(matrix_ptr_ptr, mRows, mCols);
cout << endl << endl;
for (int j = 0; j < mRows; j++)
{
for (int k = 0; k < mCols; k++)
{
cout << setw(9) << *((*matrix_ptr_ptr + j) + k) << setw(6);
}
cout << endl << endl;
}
}
void fillMatrix(int **matrix_ptr_ptr, int N, int P)
{
for (int j = 0; j < N; j++)
{
cout << left;
for (int k = 0; k < P; k++)
{
*((*matrix_ptr_ptr + j) + k) = rand() % 25;
cout << setw(9) << *((*matrix_ptr_ptr + j) + k) << setw(6);
}
cout << endl << endl;
}
}
当我使用fillMatrix
函数打印矩阵时,我得到以下内容
17 24 11 0 20
13 3 0 13 22
20 21 11 19 18
通过在main中使用for循环打印出main中的matrix_ptr_ptr
后,我得到:
17 13 20 21 11
13 20 21 11 19
20 21 11 19 18
如何让main中的matrix_ptr_ptr
等于fillMatrix
函数输出的矩阵?任何帮助将不胜感激
答案 0 :(得分:-2)
*((*matrix_ptr_ptr + j) + k) = rand() % 25;
看起来你需要这样做:
*(*(matrix_ptr_ptr + j) + k) = rand() % 25;
但更好(在评论中指出!)
matrix_ptr[j][k]
应用偏移后应取消引用。 但是,无论如何,不要自己写矩阵内容,正如评论中指出的那样,使用库。他们可以更高效,更好地做到这一点。而且编程速度也快。
Eigen,Blaze或其他人应该满足您的需求。