Spiral Matrix - Amazon Top Interview Questions
Problem Statement :
Given a 2-d array matrix, return elements in spiral order starting from matrix[0][0]. Constraints n, m ≤ 250 where n and m are the number of rows and columns in matrix Example 1 Input matrix = [ [6, 9, 8], [1, 8, 0], [5, 1, 2], [8, 0, 3], [1, 6, 4], [8, 8, 10] ] Output [6, 9, 8, 0, 2, 3, 4, 10, 8, 8, 1, 8, 5, 1, 8, 1, 0, 6]
Solution :
Solution in C++ :
vector<int> solve(vector<vector<int>>& matrix) {
vector<int> a;
if (matrix.size() == 0) {
return a;
}
int top, down, left, right;
int direction = 0;
top = 0;
down = matrix.size() - 1;
left = 0;
right = matrix[0].size() - 1;
while (left <= right && top <= down) {
if (direction == 0) {
for (int i = left; i <= right; i++) {
a.push_back(matrix[top][i]);
}
top++;
}
else if (direction == 1) {
for (int i = top; i <= down; i++) {
a.push_back(matrix[i][right]);
}
right--;
}
else if (direction == 2) {
for (int i = right; i >= left; i--) {
a.push_back(matrix[down][i]);
}
down--;
}
else if (direction == 3) {
for (int i = down; i >= top; i--) {
a.push_back(matrix[i][left]);
}
left++;
}
direction = (direction + 1) % 4;
}
return a;
}
Solution in Java :
import java.util.*;
class Solution {
public int[] solve(int[][] matrix) {
if (matrix.length == 0) {
return new int[0];
}
int[] nums = new int[matrix.length * matrix[0].length];
int startRow = 0, startCol = 0, endRow = matrix.length - 1, endCol = matrix[0].length - 1,
k = 0;
while (startRow <= endRow && startCol <= endCol) {
for (int i = startCol; i <= endCol; i++) {
nums[k] = matrix[startRow][i];
k++;
}
startRow++;
for (int i = startRow; i <= endRow; i++) {
nums[k] = matrix[i][endCol];
k++;
}
endCol--;
if (startRow <= endRow) {
for (int i = endCol; i >= startCol; i--) {
nums[k] = matrix[endRow][i];
k++;
}
endRow--;
}
if (startCol <= endCol) {
for (int i = endRow; i >= startRow; i--) {
nums[k] = matrix[i][startCol];
k++;
}
startCol++;
}
}
return nums;
}
}
Solution in Python :
class Solution:
def solve(self, matrix):
mat = []
if len(matrix) == 0:
return mat
a, b = len(matrix) - 1, len(matrix[0]) - 1
c, d = 1, 0
i, j = 0, 0
while len(mat) < (len(matrix) * len(matrix[0])):
# loop for top left to right
while j <= b:
mat.append(matrix[i][j])
j += 1
j -= 1
i += 1
# loop for rightmost top to bottom
while i <= a:
mat.append(matrix[i][j])
i += 1
i -= 1
j -= 1
# To check if no of row is odd we might traverse this in top left to right loop
if i == (len(matrix) - 1) / 2:
break
# loop for bottom right to left
while j >= d:
mat.append(matrix[i][j])
j -= 1
j += 1
i -= 1
# To check if no of column is odd we might traverse this in rightmost top to bottom loop
if j == (len(matrix[0]) - 1) / 2:
break
# loop for leftmost bottom to top
while i >= c:
mat.append(matrix[i][j])
i -= 1
i += 1
j += 1
a -= 1
b -= 1
c += 1
d += 1
return mat
View More Similar Problems
Components in a graph
There are 2 * N nodes in an undirected graph, and a number of edges connecting some nodes. In each edge, the first value will be between 1 and N, inclusive. The second node will be between N + 1 and , 2 * N inclusive. Given a list of edges, determine the size of the smallest and largest connected components that have or more nodes. A node can have any number of connections. The highest node valu
View Solution →Kundu and Tree
Kundu is true tree lover. Tree is a connected graph having N vertices and N-1 edges. Today when he got a tree, he colored each edge with one of either red(r) or black(b) color. He is interested in knowing how many triplets(a,b,c) of vertices are there , such that, there is atleast one edge having red color on all the three paths i.e. from vertex a to b, vertex b to c and vertex c to a . Note that
View Solution →Super Maximum Cost Queries
Victoria has a tree, T , consisting of N nodes numbered from 1 to N. Each edge from node Ui to Vi in tree T has an integer weight, Wi. Let's define the cost, C, of a path from some node X to some other node Y as the maximum weight ( W ) for any edge in the unique path from node X to Y node . Victoria wants your help processing Q queries on tree T, where each query contains 2 integers, L and
View Solution →Contacts
We're going to make our own Contacts application! The application must perform two types of operations: 1 . add name, where name is a string denoting a contact name. This must store name as a new contact in the application. find partial, where partial is a string denoting a partial name to search the application for. It must count the number of contacts starting partial with and print the co
View Solution →No Prefix Set
There is a given list of strings where each string contains only lowercase letters from a - j, inclusive. The set of strings is said to be a GOOD SET if no string is a prefix of another string. In this case, print GOOD SET. Otherwise, print BAD SET on the first line followed by the string being checked. Note If two strings are identical, they are prefixes of each other. Function Descriptio
View Solution →Cube Summation
You are given a 3-D Matrix in which each block contains 0 initially. The first block is defined by the coordinate (1,1,1) and the last block is defined by the coordinate (N,N,N). There are two types of queries. UPDATE x y z W updates the value of block (x,y,z) to W. QUERY x1 y1 z1 x2 y2 z2 calculates the sum of the value of blocks whose x coordinate is between x1 and x2 (inclusive), y coor
View Solution →