Add square matrix rotation in-place algorithm.

This commit is contained in:
Oleksii Trekhleb
2018-07-06 08:15:56 +03:00
parent 17ad4dc4d1
commit 75133592bb
4 changed files with 178 additions and 0 deletions

View File

@@ -116,6 +116,7 @@ a set of rules that precisely define a sequence of operations.
* `B` [Tower of Hanoi](src/algorithms/uncategorized/hanoi-tower)
* `A` [N-Queens Problem](src/algorithms/uncategorized/n-queens)
* `A` [Knight's Tour](src/algorithms/uncategorized/knight-tour)
* `B` [Square Matrix Rotation](src/algorithms/uncategorized/square-matrix-rotation) - in-place algorithm
### Algorithms by Paradigm