10. Most people do this by DFS only | BFS DFS-C++,JAVA | LeetCode 547-No of Provinces with Intuition

Поділитися
Вставка
  • Опубліковано 15 гру 2024

КОМЕНТАРІ • 17

  • @dayashankarlakhotia4943
    @dayashankarlakhotia4943 10 місяців тому

    Good explanation 👏 🎉

  • @sharatpaul
    @sharatpaul 10 місяців тому +2

    Please use white pen instead of red since the background is black

  • @harshav4704
    @harshav4704 10 місяців тому

    Mam this is really a good and simple one and i was able to do following your dfs lecture logic. Thanks keerti mam.😀👍🏻

  • @rajendiranvenkat5992
    @rajendiranvenkat5992 10 місяців тому

    Thank god. Video came.

  • @Raj10185
    @Raj10185 10 місяців тому

    Awsome video mam, I finally did the bfs code for this problem

  • @sudiptosaha7467
    @sudiptosaha7467 7 місяців тому

    Can be done using BFS. I tried this way -
    int NumProvinces(vector & adjMat)
    {
    q.push(0);
    for (int j = 0; j < numNodes; j++)
    {
    if (!visited[j]) {
    while (!q.empty())
    {
    int curr = q.front();
    q.pop();
    for (int i = 0; i < numNodes; i++)
    {
    if (adjMat[curr][i] && !visited[i])
    {
    q.push(i);
    visited[i] = true;
    }
    }
    }
    numProvince++;
    }
    }
    return numProvince;
    }

  • @bluebirdclub092
    @bluebirdclub092 10 місяців тому

    thnx
    😇

  • @adeshrukmangad9040
    @adeshrukmangad9040 2 місяці тому

    Can be done using BFS as well

  • @Aarya985
    @Aarya985 10 місяців тому

    Thanks ma'am

  • @nithiin7
    @nithiin7 10 місяців тому

    Teach us problems which are application of graph that can't be identified on first sight that is an application of graph

    • @KeertiPurswani
      @KeertiPurswani  10 місяців тому

      Yup! Will teach everything! Be patient! Hope you watched the last video! That was one such question!

  • @amanverma8097
    @amanverma8097 4 місяці тому

    for me light mode was better

  • @shwetabansal2202
    @shwetabansal2202 10 місяців тому

    Do you have any upcoming series on string/trie related questions ?

  • @avinashtiwari4025
    @avinashtiwari4025 6 місяців тому

    is time complexity of dfs is o(n2)?