I am new to prolog and was trying to create a binary predicate which will give a list in which all numbers are squared, including those in sublists. e.g. ?-dcountSublists([a,[[3]],b,4,c(5),4],C). C=[a,[[9]],b,c(5),16] Can anyone guide me how i can do this. Thank You. Answer with a snippet is appreciated
|
feedback
|
|
This is easily achieved using recursion in Prolog. Remember that everything in Prolog is either a variable, or a term (atoms are just 0-arity terms), so a term like the following:
...is easily deconstructed (also note that the list syntax To build the predicate you're after, I recommend writing it using several predicates like this:
Here's an example to get you started which does the hard bit. The following recognizes compound terms and breaks them apart with the term de/constructor
Testing:
Note that this fails if the input term has numbers, because it doesn't have a predicate to recognize and deal with them. I'll leave this up to you. Good luck! | ||||
|
feedback
|
|
SWI-Prolog has the predicate maplist/[2-5] which allows you to map a predicate over some lists. Using that, you only have to make a predicate that will square a number or the numbers in a list and leave everything else the same. The predicates number/1, is_list/1 are true if their argument is a number or a list. Therefore:
with the negation in the final predicate we avoid multiple (wrong) solutions:
for example If this is homework maybe you should not use maplist since (probably) the aim of the exercise is to learn how to build a recursive function; in any case, I would suggest to try and write an equivalent predicate without maplist. | |||
|
feedback
|