Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Rotten Orange Grid Traversal Algorithm | 2D Array | Graph Traversal Algo
Mar 18, 2025
40 views
You are given an m x n grid where each cell can have one of three values:
Every minute, any fresh orange that is 4-directionally adjacent to a rotten orange becomes rotten.
Return the minimum number of minutes that must elapse until no cell has a fresh orange. If this is impossible, return -1.
Situation:
Task:
return -1
Action:
A Normal BFS:
why is this line very important?
The line if (queue.length) min++ is crucial in the bfsLevel function because it ensures that the min counter is only incremented when there are still oranges to process in the next level of the BFS traversal. Here's why it's important:
Explanation of the Code Logic
Why if (queue.length) min++ is Important