Skip to main content

All Questions

Tagged with
1 vote
2 answers
259 views

Recursive Matrix Multiplication Algorithm

Can I improve on this any further. Is there a prettier way of passing the array sizes? ...
Ivor Denham-Dyson's user avatar
6 votes
2 answers
1k views

Spiral Scanning for matrix using recursion

I have written code for scanning an N x M matrix in spiral order using a recursive function. It uses 5 parameters - including 2 extra variables: call to keep track ...
CyberLingo's user avatar
4 votes
1 answer
595 views

Optimization of matrix determinant calculation

I have this algorithm that calculates the matrix determinant using recursive divide-and conquer-approach: ...
AndreaF's user avatar
  • 141