Created
November 4, 2012 18:17
-
-
Save jackfoxy/4012842 to your computer and use it in GitHub Desktop.
generate example BinomialHeap internals in order
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let f = (fun acc -> ("b" :: (acc |> (fun acc -> ("c" :: (acc |> (fun acc -> ("a" :: (acc |> (fun acc -> acc)))) |> (fun acc -> acc) |> (fun x -> x)))|> (fun acc -> acc) ))) |> (fun acc -> acc) ) | |
f [] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment