I am implementing merge sort in scheme, and I must do it by defining two helper methods: merge and split.
Merge takes two lists (already in increasing order) and merges them together. I have done this as follows:
(define merge
(lambda (list1 list2)
(if (null? list1)
list2
(if (null? list2)
list1
(if (< (car list1) (car list2))
(cons (car list1) (merge (cdr list1) list2))
(cons (car list2) (merge (cdr list2) list1)))))))
The split method has me stumped though. I've found an example that accomplishes this in two separate methods ('odd-numbers' and 'even-numbers'), but I was wondering if there was a way to combine these into one method called 'split'?
Example found here: merge sort in scheme
I am obviously quite new to scheme, can anyone help me understand how to do this?