2018年12月3日

常系数线性齐次递推

摘要: //矩阵类,支持矩阵的加减乘和幂运算 //------------------------------------------------------------------------------------ const int MAXN = 105; const int MAXM = 105; struct Martix { int n, m; ... 阅读全文

posted @ 2018-12-03 22:46 欣崽 阅读(150) 评论(0) 推荐(0) 编辑

Gauss消元模板

摘要: const double eps = 1e-15; //高斯消元模板 //----------------------------------------------------------------------------------- //把对应得系数矩阵化为对角矩阵,然后直接回代即可 const int maxn=100+5; const int maxm=100+5; //a为增广矩阵... 阅读全文

posted @ 2018-12-03 22:25 欣崽 阅读(195) 评论(0) 推荐(0) 编辑

矩阵类模板

摘要: poj3420 阅读全文

posted @ 2018-12-03 20:46 欣崽 阅读(700) 评论(0) 推荐(0) 编辑

导航