![]() |
Matrix is simply a two-dimensional array. So the goal is to deal with fixed indices at which elements are present and to perform operations on indexes such that elements on the addressed should be swapped in such a manner it should lookout as the matrix is rotated. Here we will be discussing two methods in dealing with indices
Method 1: Using naive approach For a given matrix, the task is to rotate its elements in a clockwise direction. Illustrations: For 4*4 matrix Input: 7 8 9 10 11 12 2 3 4 Output: 10 7 8 2 11 9 3 4 12 For 4*4 matrix Input: 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 Output: 8 4 5 6 12 13 9 7 16 14 10 11 17 18 19 15 Approach: Here, we will use loops in order to print the elements in spiral form. Where, we will rotate all the rings of the elements one by one, starting from the outermost one. And for rotating a ring, we need to do the following:
Moreover, repeat the above steps if there is an inner ring as well. Example:
Output
1 5 6 7 0 15 2 8 3 6 3 4 1 2 12 5 Method 2: Using optimal approach For a given matrix of size M×N, we need to rotate the matrix elements by k times to the right side. Where k is a number. Approach: An optimal approach is to observe each row of the stated matrix as an array and then execute an array rotation. It is performed by replicating the elements of the matrix from the given number k to the end of an array to the starting of the array utilizing a temporary array. And then the rest of the elements from the start to (k-1) to the end of an array. Illustration: Input : M = 3, N = 3, k = 2 1 2 3 4 5 6 7 8 9 Output : 2 3 1 5 6 4 8 9 7 Input : M = 2, N = 2, k = 2 11 12 13 14 Output : 11 12 13 14 Example: Java
Output
2 5 1 4 6 3 10 9 8 Time complexity: O(R*C) where R and C are no of rows and columns of given matrix respectively Auxiliary space: O(1) because using array tempo of size 3 |
Reffered: https://www.geeksforgeeks.org
Java |
Type: | Geek |
Category: | Coding |
Sub Category: | Tutorial |
Uploaded by: | Admin |
Views: | 13 |