我停留在以下問題:計算薩姆
對於給定的指數N,2×2矩陣A和一個極限L,遞歸地計算矩陣S:
S = I + A + A^2 + A^3 + ... + A^N
其中I是單位矩陣。
如果任何矩陣S的元素的是大於或等於L.遞減用L,直到它 比L.下
我的算法如下:
// Pre-condition:
// Parameters:
// An integer indicating an exponent
// A 2d 2x2 integer array must exist as an instance attribute
// Post-condition: The matrix resulting from the sum of multiplied matrices
// i.e. A^2 + A^1 + I
public int[][] computeMatrixSum(int exp)
{
if(exp == 0)
{
return new int[][]
{
new int[]{ 1,0 },
new int[]{ 0,1 }
};
}
else
{
int[][] matrixB = new int[matrix.length][matrix[0].length];
int[][] matrixC = new int[matrix.length][matrix[0].length];
matrixB = matrix;
for(int expC = exp; expC > 1; expC--)
{
// Multiply the matrix
for(int i = 0; i < matrix.length; i++)
{
for(int k = 0; k < matrixB[0].length; k++)
{
for(int j = 0; j < matrix[0].length; j++)
{
matrixC[i][k] += matrix[i][j] * matrixB[j][k];
}
}
}
matrixB = matrixC;
matrixC = new int[matrix.length][matrix[0].length];
}
// Recursively calculate the sum of the other matrix products
int[][] tmpSum = computeMatrixSum(exp-1);
int[][] matrixSum = new int[matrixB.length][matrixB[0].length];
for(int row = 0; row < matrixB.length; row++)
{
for(int col = 0; col < matrixB[0].length; col++)
{
matrixSum[row][col] = matrixB[row][col] + tmpSum[row][col];
}
}
return matrixSum;
}
}
// Pre-condition:
// Parameters:
// An integer indicating the exponent to apply on the matrix
// An integer indicating the limit of the elements of the 2d matrix sum
// An 2d 2x2 integer array must exist as an instance attribute
// Post-condition: The matrix resulting from the sum of multiplied matrices
// that has elements that are not greater than the given limit
// i.e. A^2 + A^1 + I
public int[][] solve(int exp,int limit)
{
int[][] matrixSum = computeMatrixSum(exp);
for(int row = 0; row < matrixSum.length; row++)
{
for(int col = 0; col < matrixSum.length; col++)
{
while(matrixSum[row][col] >= limit)
matrixSum[row][col] -= limit;
}
}
return matrixSum;
}
我的算法作品。但是,對於大數值的N來說,它太慢了。這是因爲當我將它們相乘時,我一直在重新計算所有指數的結果。
我不知道任何其他算法更有效地解決這個問題。
有人能請指教嗎?
謝謝。
你能申請[*霍納的方法*](http://en.wikipedia.org/wiki/Horner's_method),爲[示例](http://stackoverflow.com/a/15216775/230513)? – trashgod
哇。這很複雜。特別是當你必須乘以矩陣而不是常數時。 – LanceHAOH