I'm writing a program in prolog that count the number of occurrences of a number in a list
count([],X,0).
count([X|T],X,Y):- count(T,X,Z), Y is 1+Z.
count([_|T],X,Z):- count(T,X,Z).
and this is the output
?- count([2,23,3,45,23,44,-20],X,Y).
X = 2,
Y = 1 ;
X = 23,
Y = 2 ;
X = 23,
Y = 1 ;
X = 3,
Y = 1 ;
X = 45,
Y = 1 ;
X = 23,
Y = 1 ;
X = 44,
Y = 1 ;
X = -20,
Y = 1 ;
false.
it's count the same number several times
Any help is appreciated
You can also use the
include
predicate:Instead of the dummy variable _ just use another variable X1 and ensure it does not unify with X.
However note that the second argument X is supposed to be instantiated. So e.g. count([2,23,3,45,23,44,-20],23,C) will unify C with 2. If you want the count for every element use
Then you get
I did it like that. That gives you only one answer and finishes.