在C++中,可以使用二维动态数组来实现矩阵,并在需要时进行动态扩容。以下是一个简单的示例代码:
#include#include using namespace std; int main() { // 初始化矩阵大小为3x3 int rows = 3; int cols = 3; vector > matrix(rows, vector (cols, 0)); // 输出初始矩阵 for(int i = 0; i < rows; i++) { for(int j = 0; j < cols; j++) { cout << matrix[i][j] << " "; } cout << endl; } // 动态扩容为4x4 rows = 4; cols = 4; matrix.resize(rows, vector (cols, 0)); // 输出扩容后的矩阵 for(int i = 0; i < rows; i++) { for(int j = 0; j < cols; j++) { cout << matrix[i][j] << " "; } cout << endl; } return 0; }
在上面的示例中,我们使用vector
表示矩阵,并使用resize
方法在需要时进行动态扩容。当需要扩容时,我们可以直接调用resize
方法,并传入新的行和列数即可。