summaryrefslogtreecommitdiff
path: root/Heap/Heap.hs
blob: 9db1424268d43c0916de5d9d530498d7572f3bbe (plain)
1
2
3
4
5
6
7
8
9
10
module Heap where

class Heap h where
    empty :: Ord a => h a
    isEmpty :: Ord a => h a -> Bool
    insert :: Ord a => a -> h a -> h a
    merge :: Ord a => h a -> h a -> h a
    findMin :: Ord a => h a -> a
    deleteMin :: Ord a => h a -> h a