Created
November 6, 2014 00:35
-
-
Save dagit/1c21214657b7d9e94d0c to your computer and use it in GitHub Desktop.
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
module Utils where | |
import Data.Map (Map) | |
import qualified Data.Map as M | |
data Heap a = Heap | |
{ hNumObjs :: Int | |
, hUnused :: [Addr] | |
, hMap :: Map Addr a | |
} | |
deriving (Eq, Ord) | |
instance Show a => Show (Heap a) where | |
show (Heap num free m) = "Heap " ++ show num ++ " [" ++ show (head free) ++ "..] " ++ show m | |
type Addr = Int | |
hInitial :: Heap a | |
hInitial = Heap 0 [1..] M.empty | |
hAlloc :: Heap a -> a -> (Heap a, Addr) | |
hAlloc h@(Heap { hNumObjs = size | |
, hUnused = next:free | |
, hMap = cts | |
}) | |
n = (h { hNumObjs = size+1 | |
, hUnused = free | |
, hMap = M.insert next n cts }, next) | |
hAlloc _ _ = error "Invalid heap" | |
hUpdate :: Heap a -> Addr -> a -> Heap a | |
hUpdate h@(Heap { hMap = cts }) a n | |
= h { hMap = M.update (const (Just n)) a cts } | |
hLookup :: Heap a -> Addr -> a | |
hLookup h a = maybe (error ("can't find node " ++ show a ++ " in heap")) | |
id (M.lookup a (hMap h)) | |
hNull :: Int | |
hNull = (-1) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment