Created
November 2, 2012 19:04
-
-
Save jackfoxy/4003662 to your computer and use it in GitHub Desktop.
BinomialHeap type structure
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
type BinomialTree<'a> = Node of (int * 'a * list<BinomialTree<'a>>) | |
type BinomialHeap<'a when 'a : comparison> (isMaximalist : bool, heap : list<BinomialTree<'a>>) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment