Finding islands in a grid? traversing a graph to find smaller disjoint set

In summary, the conversation is about finding an efficient algorithm to identify "islands" of 1's in an nxn matrix where the border cells are all 1's. One suggestion is to use nodal expansion, where a source node is chosen and expanded to other nodes until an island is formed. The algorithm should take into account the number of 1's that make an island and mark already explored nodes to aid the expansion process.
  • #1
farful
57
1
I'm working in matlab, and looking for help on how to do the following. (answers in any language or pseudocode will be fine)

I have an nxn matrix, with each cell containing a 1 or a 0. The border cells are all 1's.

Is there an efficient algorithm to determine if there are any "islands" of 1's? That is, any 1's not connected to the border.

For example, if my matrix is:

1 1 1 1 1 1
1 0 0 0 1 1
1 0 1 0 0 1
1 0 1 1 0 1
1 0 0 0 0 1
1 1 1 1 1 1

I'd like to be able to identify the island of the three 1's (and eliminate them).

Thanks!
 
Technology news on Phys.org
  • #2
How about nodal expansion? You can take the expansion part of pathfinder algorithms for 2D grids and modify it a bit. Choose a source node, if this node is connected to the border, then expand to another node, or several nodes. Choose the node which is not connected to the border as the source and expand to other nodes. If those nodes are 1s and not connected to the border, then you have your island (your current source and expanded nodes). Of course you will have to specify how many 1s make an island, and how these 1s relate to your current source node. You should mark explored nodes as already explored, since they cannot be used again. It will help your expansion algorithm.
 
  • #3


There are a few different approaches you could take to solve this problem. One possible solution is to use a graph traversal algorithm, such as depth-first search (DFS) or breadth-first search (BFS), to search for disjoint sets of 1's in the matrix.

Here's a pseudocode example of how you could implement this using DFS:

1. Create a visited matrix of the same size as the input matrix, initialized to all False values.
2. Define a recursive function called findIslands that takes in a row index and column index as parameters.
3. Within the function, check if the current cell is within the bounds of the matrix and if it contains a 1.
4. If both conditions are met, mark the current cell as visited in the visited matrix.
5. Recursively call findIslands on the four adjacent cells (up, down, left, right) to check if they are also part of the same island.
6. Once all adjacent cells have been checked, return to the previous function call.
7. In your main program, iterate through the input matrix. If a cell contains a 1 and has not been visited, call the findIslands function on that cell.
8. After all cells have been checked, any remaining unvisited 1's are considered to be islands and can be eliminated.

This approach has a time complexity of O(n^2) as it requires traversing the entire matrix. There may be more efficient algorithms depending on the specific characteristics of your matrix, but this is one possible solution using a graph traversal approach.
 

Related to Finding islands in a grid? traversing a graph to find smaller disjoint set

1. What is the purpose of finding islands in a grid?

The purpose of finding islands in a grid is to identify and count the number of connected components or regions within the grid that are separated by water or empty spaces. This can be useful in various applications, such as map analysis, image processing, and geographical data analysis.

2. How do you define an island in a grid?

An island in a grid is a connected group of cells that are surrounded by water or empty spaces. The cells in the island must be adjacent to each other horizontally or vertically, but not diagonally. Any single cell can also be considered as an island if it is not surrounded by any other cells.

3. What is the difference between traversing a graph and finding islands in a grid?

Traversing a graph involves visiting each vertex or node in the graph, while finding islands in a grid involves identifying and counting connected components within the grid. In a grid, each cell can be considered as a vertex or node, and the connections between cells are determined by their adjacency to each other.

4. What is the algorithm for finding islands in a grid?

The most common algorithm for finding islands in a grid is the Depth-First Search (DFS) algorithm. This involves starting from a cell and recursively checking its adjacent cells to see if they are part of the same island. If not, the algorithm moves on to the next unvisited cell and repeats the process until all cells have been visited. The number of times the algorithm is repeated represents the number of islands in the grid.

5. How can you optimize the algorithm for finding islands in a grid?

One way to optimize the algorithm for finding islands in a grid is by using a Union-Find data structure. This data structure can efficiently keep track of the connected components in the grid, reducing the time complexity of the algorithm. Additionally, using parallel processing or multi-threading techniques can also improve the performance of the algorithm on large grids.

Similar threads

Replies
9
Views
1K
  • General Math
Replies
5
Views
1K
  • Linear and Abstract Algebra
Replies
1
Views
873
  • Advanced Physics Homework Help
Replies
7
Views
1K
  • Programming and Computer Science
Replies
2
Views
2K
  • Programming and Computer Science
Replies
1
Views
1K
Replies
7
Views
1K
  • MATLAB, Maple, Mathematica, LaTeX
Replies
2
Views
1K
  • Introductory Physics Homework Help
Replies
1
Views
470
  • Programming and Computer Science
Replies
2
Views
2K
Back
Top