How to rotate a N x N matrix by 90 degrees. I want it to be inplace?
|
Note I haven't tested this, just compoosed now on the spot. Please test before doing anything with it. |
|||||||||||||||||||
|
|
here is my solution: (rotate pi/2 clockwise) 1)do the transpose of the array, (like matrix transpose) 2)reverse the elements for each row
if rotate pi/2 in counter-clockwise 1) transpose the array 2) reverse the elements on column order never test the code! any suggestion would be appreciated! |
|||||
|
|
A complete C program which illustrates my approach. Essentially it's recursive algo. At each recursion you rotate the outer layer. Stop when your matrix is 1x1 or 0x0.
|
||||
|
|
|
The complexity of the algos are the same bigO(n), recursive are nice if it is easy to remember, but the recursive algo for rotate matrix 90 degree is not easy to remember after three months, |
|||
|
|
|
You could create a second array and then copy the first one into the second one by reading row-major in the first one and writing column-major to the second one. So you would copy:
and you would read the first row then write it back up starting like:
|
|||
|
|