Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Predsort/3 like msort/2

I would like to know is it possible to use predsort/3 without losing duplicate values? If not, that how should I sort this list of terms?

Current sort function:

compareSecond(Delta, n(_, A, _), n(_, B, _)):-
        compare(Delta, A, B).

Result:

predsort(compareSecond, [n(3, 1, 5), n(0, 0, 0), n(8, 0, 9)], X).
X = [n(0, 0, 0), n(3, 1, 5)].

You see, that term n(8,0,9) is gone and that's not what I need.

like image 215
Trac3 Avatar asked Nov 23 '11 18:11

Trac3


2 Answers

predsort will remove duplicates, but it leaves it to the comparison predicate to define which elements are duplicates. Adapt your compareSecond predicate to also compare the first and third arguments to the functors it receives, if the second argument compares equal.

Alternatively, switch to msort:

?- maplist(swap_1_2, [n(3, 1, 5), n(0, 0, 0), n(8, 0, 9)], Swapped),
|    msort(Swapped, SortedSwapped),
|    maplist(swap_1_2, Sorted, SortedSwapped).
% snip
Sorted = [n(0, 0, 0), n(8, 0, 9), n(3, 1, 5)] .

where the definition of swap_1_2 is left as an exercise to the reader.

like image 156
Fred Foo Avatar answered Nov 02 '22 10:11

Fred Foo


If you're not bothered about further sorting the duplicates, this simple addition prevents them from being removed.

compareSecond(Delta, n(_, A, _), n(_, B, _)):-
    A == B;
    compare(Delta, A, B).
like image 36
Jonathan Avatar answered Nov 02 '22 12:11

Jonathan