InterviewSolution
Saved Bookmarks
| 1. |
What is called as transposition table?(a) Hash table of next seen positions(b) Hash table of previously seen positions(c) Next value in the search(d) None of the mentionedI had been asked this question during an internship interview.This is a very interesting question from Alpha Beta Pruning in portion Adversarial Search of Artificial Intelligence |
|
Answer» RIGHT CHOICE is (b) HASH table of previously seen positions For explanation I WOULD say: Transposition is the OCCURRENCE of repeated states frequently in the search. |
|