Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I search for reusable tool or algorithm that enable me to apply conditional logic to questions dynamically.

lets explain in details:

question 1 - What is your age?

a) less 18        
b)between 18-25     
c) greater than 25

if he choose

a) then he go to Question 2 
b) he will goto question 5 
c) he will goto question 7 

So as I said the next question depends on the answer of the current question.I don't need to set if condition for each question .I need it to be dynamically.

I hope it is clear now . Is there any component or design pattern or algorithm implements what I said

All ideas are welcomed.

share|improve this question

6 Answers

It sounds like you probably want a lookup table, effectively mapping the pair (input question, answer) to the next question number to ask. Perhaps it should default to "go to the next question" if there's no entry in the table.

Exactly how you represent it in data structures will depend on what you're using to store the questions. For example, in SQL you could have a table with columns of "input question, answer, next question". In C# you might have a Dictionary<Tuple<int, int>, int>... or possibly (if there aren't going to be huge numbers of questions) just a List<AnswerPath> where AnswerPath contains the same three values as the SQL table would have done. (Change the name, it's awful, but you get the idea.)

share|improve this answer
The problem with this is each question can only ever depend on a single input (question, answer pair). – chaiguy Mar 31 '11 at 14:46
What I mean is, when determining the next question, you would look it up based only on two pieces of information: the current question and the selected answer. What if the applicability of the next question depends on the results of several previous questions? Granted, you could do it this way, but it may result in a lot of duplication if the same question can exist at two different points in the tree. – chaiguy Mar 31 '11 at 14:50
@chaiguy: If the applicability of the question depends on many things, then you change the design. My design copes with exactly what's been requested, and nothing else. ("the next question depends on the answer of the current question") – Jon Skeet Mar 31 '11 at 14:55
Yes, but it's also not very extensible is it? Why limit yourself right off the bat? You might not need questions to depend on multiple previous results right now, but to assume that you never will would be silly, especially if this is intended to be a reusable solution. Just my $.02. – chaiguy Mar 31 '11 at 14:58
1  
@chaiguy: Because it's simpler. I favour a simple solution for what I need now over a complex solution for what I may need. I find it's very difficult to accurately predict what you will need ahead of time... obviously if you have a use case in mind already, it's worth giving some weight to that - but we have no indication here that anything more complex will ever be involved. – Jon Skeet Mar 31 '11 at 14:59
show 4 more comments

Consider building your questions as a graph, where each answer points to an ordered set of other questions.

Even better, give each question a set of prerequisites that must be satisfied by previous answers. For example, for question 2, the prerequisites might be that the answer to question 1 was either a or b.

Then when determining the next question, you would just iterate through each of them until you find the next one whose prerequisites are met.

share|improve this answer

Add a property called Next Question for every answer.

share|improve this answer

you could use a Dictionary<Tuple<Question,Answer>>,Question> so that the question and answer became the key for the next question.

share|improve this answer

Sounds like a job for the Chain of Responsibility pattern...

share|improve this answer

it looks like you need an AI algorithm. You should search about some logic programming such as prolog. Or you may also use some functional programming methods as well tho. I don't have about too much info those paradigm but it may give you a hint.

share|improve this answer
AI? Really? Sounds rather overcomplicated for something that can easily be achieved by a lookup table... where's the "intelligence" here? – Jon Skeet Mar 31 '11 at 15:03
@Jon Skeet: " where's the "intelligence" here? ", to answer question by checking result of last answers. You sound overreacted about the idea. It might not be the exact answer he wants, I just try to give him a little tip which might helps . Searching doesn't hurt – nr4bt Mar 31 '11 at 15:13
Artificial intelligence usually refers to something rather more complicated than "If X, do Y". There's no "intelligence" here or anything approaching it, IMO. – Jon Skeet Mar 31 '11 at 15:15

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.