摘要: //高斯消元 时间复杂度O(n^3) 使用浮点数计算 #include #include #include using namespace std; const double eps=1e-8; const int maxn=101; double a[maxn][maxn]; bool l[maxn]; double ans[maxn]; int n,m; int t; void prin... 阅读全文
posted @ 2019-08-20 16:55 cherish__lin 阅读(418) 评论(0) 推荐(0) 编辑