How can I sort and merge two lists based on the operator in Racket-Plait? > ascending, < descending order. This is what I have so far, but I do not have any idea what to do next.
(define (merge [op : (Number Number -> Boolean)]
[int-list1 : (Listof Number)]
[int-list2 : (Listof Number)]) : (Listof Number)
(cond
[(equal? op <) "something"]
[(equal? op >) "do something"]))
(test (merge < '(1 4 6) '(2 5 8))
'(1 2 4 5 6 8))
I think you're assuming that this is more complicated than it is.
You're not supposed to do different things depending on the value of
op
-op
is the ordering predicate you should use for merging and the predicate that the input lists are ordered by.(In contrast to many other languages, symbols like
<
or>
are not "special" in any way, they are identifiers just likeless
, orgreater
, orop
)Here is a skeleton special case to get you started; the interesting bits are left as an exercise:
then, notice that this is equivalent to the code above:
and then you pass
op
as a parameter instead, and you're done.