码迷,mamicode.com
首页 > 其他好文 > 详细

高斯消元模版

时间:2014-06-17 19:03:00      阅读:210      评论:0      收藏:0      [点我收藏+]

标签:class   blog   code   2014   html   name   

矩阵的秩

typedef int Matrix[maxn][maxn];
int rank(Matrix A, int m, int n)
{
	int i = 0, j = 0, k, r, u;
	while(i < m && j < n)
	{
		r = i;
		for(k = i; k < m; k++)
			if(A[k][j])
			{
				r = k;
				break;
			}
		if(A[r][j])
		{
			if(r != i)
				for(k = 0; k <= n; k++)
					swap(A[r][k], A[i][k]);
			for(u = i+1; u < m; u++)
				if(A[u][j])
					for(k = i; k <= n; k++)
						A[u][k] ^= A[i][k];
			i++;
		}
		j++;
	}
	return i;
}


高斯消元模版,布布扣,bubuko.com

高斯消元模版

标签:class   blog   code   2014   html   name   

原文地址:http://blog.csdn.net/u011686226/article/details/31755729

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!