شرح وحل مثال خوارزمية Greedy Best First Search Algorithm

Поділитися
Вставка
  • Опубліковано 19 січ 2025

КОМЕНТАРІ • 9

  • @hatimhussein
    @hatimhussein 26 днів тому +2

    ماكملت الفيديو لكن اقسم بالله افضل شرح علي اليوتيوب لحدي الان

    • @AhmedHashimirq
      @AhmedHashimirq  25 днів тому +2

      شكراً جزيلاً صديقي، تعليقك افرحني جداً! ❤🙏

  • @nightcrawler4293
    @nightcrawler4293 23 години тому

    Node level * 2 == Actual node level (A = 0 , B C E = 1 , D G = 2 , F = 3 )
    This means that A is at the level 0 , D is at the level 2 , F is at the level 3

  • @zakaryaebennani8341
    @zakaryaebennani8341 4 місяці тому +1

    السلام عليكم و رحمة الله تعالى وبركاته.
    بارك الله فيك على هذا الشرح السلس.
    أتمنى أن تكون هنالك حلقة عن priority queue أعتقد هي المحرك الرئيسي لكل خوارزميات الgreedy و الheuristic في مجال AI search.
    أسئل الله لك التوفيق و السداد.

    • @AhmedHashimirq
      @AhmedHashimirq  4 місяці тому +3

      وعليكم السلام ورحمة الله وبركاته، شكراً جزيلاً اخي العزيز.
      كلامك صحيح تماماً، ان شاء الله قريباً تنزل حلقة بالقناة عن priority queue. 🙏

  • @IxiRa_BzN
    @IxiRa_BzN 23 дні тому

    شكرا يامعلم ❤🫂🩵

  • @mohamedmoumni6788
    @mohamedmoumni6788 12 днів тому

    Is this path A -> E -> D -> F smaller ?

    • @AhmedHashimirq
      @AhmedHashimirq  12 днів тому

      Yes, path A -> E -> D -> F is shorter, and path A -> B -> D -> F is also shorter, and this is one of the problems with the Greedy Best First Search Algorithm, it finds the path that leads to the goal, but it does not guarantee that it is the shortest solution.