用c++写一个矩阵类的构造函数,使得其可以用类似以下语句声明并初始化 Matrix m = {{1,2,3},{4,5,6}}; 50

(矩阵中的数据在矩阵类中以一个1维数组int*data保存)... (矩阵中的数据在矩阵类中以一个1维数组int* data保存) 展开
 我来答
Miafifi
2016-12-07 · TA获得超过451个赞
知道小有建树答主
回答量:277
采纳率:93%
帮助的人:172万
展开全部
#include <iostream>

double** matrix_init( const int row, const int col )
{
    double** mat = new double*[row];
    for ( int i = 0; i < row; i++)
    {
        mat[i] = new double[col];
    }

    for (int i = 0; i < row; i++)
    {
        for (int j = 0; j < col; j++) mat[i][j] = i*row + j + 1.0;
    }

    return mat;
}

void matrix_print( double** matrix, const int row, const int col )
{
    for (int i = 0; i < row; i++)
    {
        for (int j = 0; j < col; j++) std::cout << matrix[i][j] << " " << std::flush;
        
        std::cout << std::endl;
    }
}

int main()
{
//    std::cout << "HI World" << std::endl;
    matrix_print(matrix_init(2, 3), 2, 3);

    return 0;
}
追问
你的这个矩阵不能用
Matrix m = {{1,2,3},{4,5,6}};

构造并初始化...
追答
I am sorry to not read your question carefully.

I guess there would be a solution when you use c++11 to initilize the class constructor, whereas I am unfamiliar with c++ version greater than 98 unfortunately.

Good luck for your happy hunting...
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式