C++ is to pointers as functional programming is to continuations: newbies are mystified by them both.
Start with a simple binary tree insert:
type 'a tree =
| Node of 'a tree * 'a * 'a tree
| Nil
let rec insert x = function
| Nil -> Node(Nil, x, Nil)
| Node(l, a, r) as node ->
if x > a then Node(l, a, insert x r)
elif x < a then Node(insert x l, a, r)
else node
Simple, utilitarian, but its not tail-recursive. So, you go-go-gadget continuation passing style, and you get this:
let insert x tree =
let rec loop cont x = function
| Nil -> cont <| Node(Nil, x, Nil)
| Node(l, a, r) as node ->
if x > a then loop (fun r' -> cont <| Node(l, a, r')) x r
elif x < a then loop (fun l' -> cont <| Node(l', a, r)) x l
else cont node
loop id x tree
At the expense of a little clarity, the algorithm is properly tail-recursive.
Here's a traditional and tail-recursive list append side-by-side:
let rec append a b =
match a with
| [] -> b
| x::xs -> x::append xs b
let append2 a b =
let rec loop cont = function
| [] -> cont b
| x::xs -> loop (fun xs' -> cont <| x::xs') xs
loop id a
(a -> b -> a) -> a -> [b] -> a. The first argument is a function that takes an accumulator and a list element and returns a new value for the accumulator. The second argument is the initial accumulator value. The third argument, obviously, is the list. – Chuck Oct 11 at 19:13