版权声明: 本博客所有文章除特别声明外,均采用 BY-NC-SA 许可协议。转载请注明出处!
title: 模板 - [已弃用] 基于 std::valarray 实现的矩阵 categories:
基于 C++17 标准, 实现了矩阵的运算, 求逆, 转置, 秩, 行列式, Gauss 消元, 支持流式 IO
{% note warning %} 仅在 GCC 下测试过 {% endnote %}
<!-- more -->Tp
须有接受 1 个整数的构造函数, Tp{0}
需为零元, Tp{1}
需为幺元bool
, 这三种实现分别位于 Matrix::matrix
, Matrix::matrix_int
, Matrix::matrix_bool
中{% icodeweb blog lang:cpp matrix-valarray/Matrix.h %}
洛谷 P2447 [SDOI2010] 外星千足虫
<details open> <summary><font color='orange'>Show code</font></summary> {% icodeweb cpa_cpp title:Luogu_P2447 Luogu/P2447/0.cpp %} </details>