-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathMatrixCellsInDistanceOrder.java
26 lines (25 loc) · 1.06 KB
/
MatrixCellsInDistanceOrder.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import java.util.LinkedList;
import java.util.Queue;
public class MatrixCellsInDistanceOrder {
public int[][] allCellsDistOrder(final int rows, final int columns, int rCenter, int cCenter) {
int[][] result = new int[rows * columns][2];
final Queue<int[]> positions = new LinkedList<>();
final boolean[][] visited = new boolean[rows][columns];
positions.add(new int[] {rCenter, cCenter});
int k = 0, row, column;
while (!positions.isEmpty()) {
int[] position = positions.poll();
row = position[0];
column = position[1];
if (row < 0 || row >= rows || column < 0 || column >= columns) continue;
if (visited[row][column]) continue;
visited[row][column] = true;
result[k++] = position;
positions.add(new int[] {row - 1, column});
positions.add(new int[] {row, column + 1});
positions.add(new int[] {row + 1, column});
positions.add(new int[] {row, column - 1});
}
return result;
}
}