Breadth first search algorithm Example | BFS | uninformed | AI | Lec-13 | Bhanu Priya

แชร์
ฝัง
  • เผยแพร่เมื่อ 27 ส.ค. 2019
  • Example on breadth first search algorithm in artificial intelligence

ความคิดเห็น • 55

  • @getachewmelkam
    @getachewmelkam ปีที่แล้ว +18

    the path is "s a b c d g " in BFS you did by DFS algorithm. why cost is used in BFS it is brute/blind or uninformed algorithm? any ways thankyou.

  • @radhakrishna8003
    @radhakrishna8003 2 ปีที่แล้ว +2

    Thank You Ma'am.God Bless You 🙏🙏🙏

  • @nickbaib1839
    @nickbaib1839 4 ปีที่แล้ว +5

    Thank you so much!
    You upload this video in the best time!

  • @user-ud9pf5hf6s
    @user-ud9pf5hf6s 3 หลายเดือนก่อน +1

    Excellent teaching Mam👏👏

  • @CDJunainah
    @CDJunainah ปีที่แล้ว

    Hai,, may I know how to arrange the vertex in tree.. what is conditions to arrange them in tree

  • @cherryrodriguez6620
    @cherryrodriguez6620 2 ปีที่แล้ว +3

    Thank you for this lecture! you made it easier for me to understand this topic!

  • @chandratheexplorer
    @chandratheexplorer 6 หลายเดือนก่อน

    WOW SOLUTION EXPLAINED

  • @thushararavindu7
    @thushararavindu7 5 หลายเดือนก่อน

    Thank you very much ma'am 😍

  • @amonishkumar9761
    @amonishkumar9761 4 ปีที่แล้ว

    Thank you mam

  • @shashank6753
    @shashank6753 3 ปีที่แล้ว +7

    S,c,b,a,g path should be taken breth wise if we kar moving why we move s,b,g depth

  • @asitgaming331
    @asitgaming331 2 ปีที่แล้ว +1

    how to elaborate this as answer for 4 marks question in exam.

  • @arpitsharma981
    @arpitsharma981 ปีที่แล้ว +28

    The solution you gave was for the dfs here but it was asking for bfs so there is a mistake there

    • @kehi19
      @kehi19 5 หลายเดือนก่อน

      Can u explain pls?

    • @saurav2409
      @saurav2409 4 หลายเดือนก่อน +1

      No no ,she did it correctly ,that is only the bfs way

    • @krayeldix5827
      @krayeldix5827 หลายเดือนก่อน

      ​@@saurav2409ufc3

  • @manfredmbedzi8137
    @manfredmbedzi8137 3 ปีที่แล้ว +1

    Thank you. Just one question, since we have a node transverse D - G why don't we have G - D

    • @EveryDaymast
      @EveryDaymast 3 ปีที่แล้ว +2

      Because of breath first search ----->

    • @suneeth_kumar
      @suneeth_kumar 2 ปีที่แล้ว +2

      because our goal state is G so there is no need to visit its neighbouring nodes. that's y there is no G-D

  • @kranthisiriki539
    @kranthisiriki539 2 ปีที่แล้ว

    Why should we take weights and what are weights

  • @hadjer168
    @hadjer168 2 ปีที่แล้ว +12

    We explore a node only once through an edge not many times, so you're wrong in step 3 and step 4 (there is no step 4 by the way, the algorithm stops at step 3). In step 3, G can be only discovered by node B and then the solution will be S-B-G and the tree will be like :
    at level 0 : S
    at level 1 : A B C (related to S)
    at level 2 : D related to A , G related to B
    Source : th-cam.com/video/NrQGxfFMYzs/w-d-xo.html

    • @nahomaraya2377
      @nahomaraya2377 2 ปีที่แล้ว +6

      I cannot speak French so I'll take your word on it for this one

    • @hadjer168
      @hadjer168 2 ปีที่แล้ว

      ​@@nahomaraya2377 the presentation in that video is done by animation so you can only watch it and relate with my words. The animation of the algo starts from 2:00 to 6:53 ==> th-cam.com/video/NrQGxfFMYzs/w-d-xo.html

    • @abhijitmanna4524
      @abhijitmanna4524 11 หลายเดือนก่อน

      yes she is wrong, though she taught correct in data structure playlist, but this is wrong

  • @xpertstrategist2216
    @xpertstrategist2216 2 ปีที่แล้ว +1

    Very well explained thank you very much!

  • @user-ud9pf5hf6s
    @user-ud9pf5hf6s 3 หลายเดือนก่อน

    Excellent teaching Mam 👏👏

  • @Good-points
    @Good-points หลายเดือนก่อน

    thanks alot

  • @naelssam8147
    @naelssam8147 4 ปีที่แล้ว +6

    thank u for lecture . I have question . what is difference between tree and graph ?

    • @gokulboopathi901
      @gokulboopathi901 3 ปีที่แล้ว

      A tree is a graph but all graphs are not trees

    • @srinjoyghosh7273
      @srinjoyghosh7273 3 ปีที่แล้ว

      Graphs can be straight lines or a single curve also, but a Tree must have branches.

  • @farhathjahan2951
    @farhathjahan2951 11 หลายเดือนก่อน +1

    Can you please explain how you gave the "weights" in graph

  • @Regular_guy12
    @Regular_guy12 ปีที่แล้ว +2

    I m confused at last, that's not how BFS work!! I mean how came she didn't go breadth wise???? According to rule

  • @arunlohan302
    @arunlohan302 5 หลายเดือนก่อน +1

    This is DFS or BFS 😂😂😂😅😅😅😅😅😅 i think you confuse

  • @Mr.Bichitra
    @Mr.Bichitra 3 ปีที่แล้ว +3

    why the weights of the edges are not considered?

    • @AHMED-ly2ml
      @AHMED-ly2ml 3 ปีที่แล้ว +2

      This is uninformed search(brute force) it does not take into consideration costs/heuristics

  • @sayanghosh6544
    @sayanghosh6544 ปีที่แล้ว

    Sorry to say, but it's not BFS method what you're talking about.

  • @vrishbhansingh2597
    @vrishbhansingh2597 ปีที่แล้ว

    Atleast tell the reason why we choose those 2 paths no reasons about why we choose that

  • @NigatuAsfewu
    @NigatuAsfewu 5 วันที่ผ่านมา

    Exercise: Apply Uninformed Search Strategies to identify optimal path

    • @NigatuAsfewu
      @NigatuAsfewu 5 วันที่ผ่านมา

      exercise this

  • @duaqureshi8637
    @duaqureshi8637 ปีที่แล้ว

    why u didnt take SADG or SBDG ?

  • @saishanmukh7831
    @saishanmukh7831 3 ปีที่แล้ว +1

    The path should be SABG ryt

    • @tharaka.insfra2026
      @tharaka.insfra2026 3 ปีที่แล้ว +3

      since this is bfs path should be S->A->B->C->D-> G. she didn't concern about the traverse through the levels.

  • @Abhishekkumar-wk5nb
    @Abhishekkumar-wk5nb 2 ปีที่แล้ว +5

    Wrong solution

  • @rishazara415
    @rishazara415 2 ปีที่แล้ว +3

    Ur answer is wrong

  • @riyadh5449
    @riyadh5449 ปีที่แล้ว

    Damn to Hindi accent

  • @innercircletradertevision
    @innercircletradertevision หลายเดือนก่อน

    Ok

  • @MrRop-yp3wt
    @MrRop-yp3wt 3 ปีที่แล้ว +10

    horrible explanation

    • @sadathhussain1619
      @sadathhussain1619 3 ปีที่แล้ว

      Mean good or bad?

    • @skh7056
      @skh7056 2 ปีที่แล้ว

      Horrible means bad nehhhh?????

    • @skh7056
      @skh7056 2 ปีที่แล้ว +1

      And even she get answers deapth wise, not breadth wise😕

  • @ujjwaljain2421
    @ujjwaljain2421 2 หลายเดือนก่อน

    Lgta h fail krayegi

  • @Divya-yv1gs
    @Divya-yv1gs 2 ปีที่แล้ว

    Thank you mam