Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Anyone have any advice for learning to program a 20 questions game? Something that could learn in the future but doesn't necessarily need to learn right away.

share|improve this question

2 Answers

up vote 0 down vote accepted

This SO post should help you on your way

http://stackoverflow.com/questions/887533/how-do-20-questions-ai-algorithms-work

share|improve this answer

To start, you should look into search/sort algorithms (for example binary search, as mentioned in code4life's link's best answer).

Another more advanced topic you should look into is Machine Learning. Search algorithms will help your program attempt to find the correct answer, but machine learning algorithms will help your program correct its logic when it loses the game.

Finally, you should look into basic database manipulation, as depending on your chosen medium for the game, you'll want a good way to store your information. That is, you need to figure out a proper way to organize the data about all of the objects you can provide as answers, and decide on the most efficient way to query for them - in particular, this kind of efficiency will be important if your program will be used by many users as once (for example if you make it a webapp).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.