What is recursion in Artificial Intelligence?
Answers
Answered by
0
Answer:
In simple terms, Recursion is calling itself to do tasks that are too complex for an iterative approach. Recursion is used in data structure algorithms like local search algorithms that can be used in AI. Good Old Fashioned Artificial Intelligence (GOFAI) algorithms use recursion for BFS, DFS, and means-end analysis.
Answered by
1
Answer:
In simple terms, Recursion is calling itself to do tasks that are too complex for an iterative approach. Recursion is used in data structure algorithms like local search algorithms that can be used in AI. Good Old Fashioned Artificial Intelligence (GOFAI) algorithms use recursion for BFS, DFS, and means-end analysis.
Similar questions