LeetCode刷題: 【695】 島嶼的最大面積(深度優先搜索:遞歸)

1. 題目 2. 解題思路(DFS) 以迭代中遇到的1爲起點向四周進行深度優先搜索,把搜索過的位置置0web 3. 代碼 class Solution { public: int maxAreaOfIsland(vector<vector<int>>& grid) { int max_ans = 0; // 在矩陣中按行搜索 1 for(in
相關文章
相關標籤/搜索