A * ALGORITHM IN ARTIFICIAL INTELLIGENCE WITH EXAMPLE

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

КОМЕНТАРІ • 54

  • @sonali9696
    @sonali9696 3 роки тому +27

    Good explanation and good voice!

  • @nageswarnandipati682
    @nageswarnandipati682 4 роки тому +10

    Love the way you explained ! Simple & easily understandable 💟 Within 10 minutes, I came to know what A* Algo is 💟

  • @ranupandey3639
    @ranupandey3639 4 роки тому +13

    Best explanation of A* algo! Thanks ma'am!

  • @ritanshshrivastava-IIT
    @ritanshshrivastava-IIT 19 днів тому

    fabulous explanation , quick revision for Gate DA aspirants !

  • @Tan-db3qn
    @Tan-db3qn 5 місяців тому

    life saver i watched like 4 videos and none of them made sense came across yours and was saved thank you smmmmm

  • @parkbora07
    @parkbora07 5 днів тому

    Easily understood. Thank you, ma'am :)

  • @DaltonStephen
    @DaltonStephen Рік тому +12

    i need a video on how heuristic value is calculated

  • @ahmedsarker3555
    @ahmedsarker3555 3 роки тому +5

    7:09 why didnt we use S->A->D

    • @gouthamraj3178
      @gouthamraj3178 2 роки тому +1

      because it is already reached the goal node and it is not the shortest path

  • @indiai078
    @indiai078 8 місяців тому +2

    Your voice is mindblowing❤

  • @Husdajukies
    @Husdajukies Рік тому

    thank you queen finally I understand

  • @applelover4734
    @applelover4734 Рік тому +1

    can u teach us react full course with advanced concepts

  • @tetr4182
    @tetr4182 2 роки тому +6

    When did you cross S ==> A?

    • @tushar_kesharii
      @tushar_kesharii 11 місяців тому +3

      she forget to cross the S => A initially , the right time to cross it when you use the S => A and move forward .

  • @ctcrnitv
    @ctcrnitv 4 роки тому

    excellent video, strange name for a computer science youtube channel

    • @crackconcepts
      @crackconcepts  4 роки тому

      Couldn't come up with a better name 😂

  • @maitryghag6619
    @maitryghag6619 4 роки тому +4

    Heuristic value please

  • @hemanthsai905
    @hemanthsai905 3 роки тому +1

    Thanks for your explanation

  • @abudimutamba
    @abudimutamba 3 роки тому +2

    Thank for sharing 🔥

  • @afrazhussain3778
    @afrazhussain3778 9 місяців тому

    good explanation with cool voice

  • @poornachander-gq1bz
    @poornachander-gq1bz 2 роки тому +1

    thx so much for explaining clearly

  • @sachinpratapsingh2250
    @sachinpratapsingh2250 2 роки тому +1

    far better than gate smasher

  • @ashutoshdurgule4011
    @ashutoshdurgule4011 2 роки тому +1

    make videos on Machine learning MU engineering

  • @poorvibh8082
    @poorvibh8082 3 місяці тому

    heuristic value video

  • @haeckerzz
    @haeckerzz 4 роки тому

    when you website is coming sadiasiddiqui???

  • @saeedabdollahi8203
    @saeedabdollahi8203 2 роки тому +1

    how do you visit a node like B two
    times?

  • @sankard9280
    @sankard9280 Рік тому +1

    mam here b is already explored na mam so how can we choose s->a->b mam

  • @RajKumar-r1q3o
    @RajKumar-r1q3o Рік тому

    Thank you so much

  • @shaikshaiksha4763
    @shaikshaiksha4763 Рік тому +2

    How to find heuristic value mam

  • @keerthigadhanaskaran2752
    @keerthigadhanaskaran2752 2 роки тому

    thank you
    very helpful

  • @ankitpal8044
    @ankitpal8044 4 роки тому +1

    I have a very urgent doubt please solve it asap
    Iterative A* search and iterative deepning A* search has same algorithm

    • @ankitpal8044
      @ankitpal8044 4 роки тому

      Please solve it 🙏 😔

    • @applelover4734
      @applelover4734 Рік тому

      Iterative A* search and iterative deepening A* search are related concepts, but they are not exactly the same. Let me explain both concepts and provide you with a simple Python implementation for each.
      1. **Iterative A* Search:**
      Iterative A* search is an improvement over the traditional A* search algorithm. A* (A-star) search is a popular graph traversal and pathfinding algorithm that efficiently finds the shortest path between two points on a graph. Iterative A* search is an enhancement to the A* algorithm where it uses an iterative deepening approach to improve its performance.
      Here's a simplified Python implementation of Iterative A* Search:
      ```python
      def iterative_a_star_search(graph, start, goal):
      max_depth = 0
      while True:
      result = a_star_search(graph, start, goal, max_depth)
      if result is not None:
      return result
      max_depth += 1
      def a_star_search(graph, start, goal, max_depth):
      # Your A* search implementation goes here
      # Use max_depth as a limit for the depth of the search
      # Return the result or None if no path is found within the given depth
      # Example usage:
      # result = iterative_a_star_search(graph, start_node, goal_node)
      ```
      2. **Iterative Deepening A* Search:**
      Iterative Deepening A* search is a combination of the Iterative Deepening Depth-First Search (IDDFS) and A* search algorithms. It repeatedly performs depth-limited searches, gradually increasing the depth limit until a solution is found.
      Here's a simplified Python implementation of Iterative Deepening A* Search:
      ```python
      def iterative_deepening_a_star_search(graph, start, goal):
      depth_limit = 0
      while True:
      result = a_star_search(graph, start, goal, depth_limit)
      if result is not None:
      return result
      depth_limit += 1
      def a_star_search(graph, start, goal, depth_limit):
      # Your A* search implementation goes here
      # Use depth_limit as a limit for the depth of the search
      # Return the result or None if no path is found within the given depth
      # Example usage:
      # result = iterative_deepening_a_star_search(graph, start_node, goal_node)

  • @universal_boss1225
    @universal_boss1225 3 місяці тому

    How the heuristic values calculated

  • @akshaykumar192
    @akshaykumar192 Рік тому

    heristic valuse diya rahta hai kya ?

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

    What to do if heuristic value is not provided?

  • @arduinoide2165
    @arduinoide2165 3 роки тому +1

    Perfect

  • @shannish3947
    @shannish3947 3 роки тому

    good explanation

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

    How to taake heuristic values

    • @sowmyagupta7969
      @sowmyagupta7969 19 днів тому +1

      That's the part of the question itself ..you don't need that to calculate on yourself

  • @umeshgolla2730
    @umeshgolla2730 5 років тому

    I have been asking you to take a course on alogorithms and database..

  • @moshe-dm8wv4pb2t
    @moshe-dm8wv4pb2t 4 місяці тому

    Heuristic values meru ela thisukunaru

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

      Did you get the answer

  • @moshe-dm8wv4pb2t
    @moshe-dm8wv4pb2t 4 місяці тому

    What's Madam ela ala

  • @dewmi4403
    @dewmi4403 Рік тому

    I guess you were in PICT

  • @agathisekar3112
    @agathisekar3112 2 роки тому

    I need theory part

  • @ionkhan
    @ionkhan 5 років тому

    we need a complete course you teach better

  • @AliRaza-ei1mt
    @AliRaza-ei1mt Рік тому

    samaj agya

  • @black_godfred
    @black_godfred 3 роки тому

    ❤️❤️❤️

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

    🏩pink 🤞🏽