gnu Prolog powerset modification
问题 So i got this for powerset: powerset([], []). powerset([H|T], P) :- powerset(T,P). powerset([H|T], [H|P]) :- powerset(T,P). This generates all sets of a list. Is it possible to generate all sets in list order. Example: List = [a,b,c] I want to get [a],[a,b],[a,b,c],[b],[b,c],[c] Note there is no [a,c] in this list of subsets since these are subsets starting from the left and going to the right. I've tried using a combination of append and recursion, but that didn't work out as i wanted it to.