I've been trying to get used to using DCGs in Prolog and failing.

How can I define a set of grammar rules to accept the language a^n b^n?

E.g. aaaabbbb or ab etc...

Thanks :).

link|improve this question

77% accept rate
feedback

1 Answer

up vote 4 down vote accepted
ab --> [].
ab --> [a], ab, [b].
link|improve this answer
Thank you. With your rules, it accepts ab([a,a,a,b,b,b],[]). like I would expect but is there any good way of making it accept ab(aaabbb,[]). other than exploding aaabbb into [a,a,a,b,b,b] using an auxilary predicate? Thank you :). – vivid-colours Jan 10 '11 at 18:12
Will accept when 8 min restriction on 'accept' is lifted :). – vivid-colours Jan 10 '11 at 18:13
You'll have to explode it into a list. DCGs don't work on atoms. – larsmans Jan 10 '11 at 18:14
Brilliant, cheers, you're helped me a lot with Prolog :). It was just DCGs I was battling with mostly. Thanks :). – vivid-colours Jan 10 '11 at 18:18
feedback

Your Answer

 
or
required, but never shown

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