[Leetcode] 200 Number of Islands (DFS)

Source: Internet
Author: User

[Leetcode] 200 Number of Islands (DFS)

A very basic deep-priority DFS search question. When we traverse the array and find a position of '1', we use dfs to change all the 1 around it to 0, and then recursively continue, in this way, the '1' of all connected parts is an island, sum ++, and then sum is returned. Similar questions include hdu 1016 and hdu 1241.

 

Int dir [4] [2] = {-}, {0,-1}; class Solution {public: void dfs (int I, int j, vector <vector

 
  
> & Grid) {for (int k = 0; k <4; k ++) {int x = I + dir [k] [0]; int y = j + dir [k] [1]; if (x> = 0 & x

  
   
= 0 & y

   
    
> & Grid) {int sum = 0; for (int I = 0; I

    

     

 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.