1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
|
-----------------------------------------------------------------------------
-- |
-- Module : Data.Set
-- Copyright : (c) The University of Glasgow 2001
-- License : BSD-style (see the file libraries/base/LICENSE)
--
-- Maintainer : libraries@haskell.org
-- Stability : provisional
-- Portability : portable
--
-- An implementation of sets, based on the "Data.FiniteMap".
--
-----------------------------------------------------------------------------
module Data.Set (
-- * The @Set@ type
Set, -- abstract, instance of: Eq
-- * Construction
emptySet, -- :: Set a
mkSet, -- :: Ord a => [a] -> Set a
setToList, -- :: Set a -> [a]
unitSet, -- :: a -> Set a
-- * Inspection
elementOf, -- :: Ord a => a -> Set a -> Bool
isEmptySet, -- :: Set a -> Bool
cardinality, -- :: Set a -> Int
-- * Operations
union, -- :: Ord a => Set a -> Set a -> Set a
unionManySets, -- :: Ord a => [Set a] -> Set a
minusSet, -- :: Ord a => Set a -> Set a -> Set a
mapSet, -- :: Ord a => (b -> a) -> Set b -> Set a
intersect, -- :: Ord a => Set a -> Set a -> Set a
addToSet, -- :: Ord a => Set a -> a -> Set a
delFromSet, -- :: Ord a => Set a -> a -> Set a
) where
import Prelude
import Data.FiniteMap
import Data.Maybe
-- This can't be a type synonym if you want to use constructor classes.
newtype Set a = MkSet (FiniteMap a ())
emptySet :: Set a
emptySet = MkSet emptyFM
unitSet :: a -> Set a
unitSet x = MkSet (unitFM x ())
setToList :: Set a -> [a]
setToList (MkSet set) = keysFM set
mkSet :: Ord a => [a] -> Set a
mkSet xs = MkSet (listToFM [ (x, ()) | x <- xs])
union :: Ord a => Set a -> Set a -> Set a
union (MkSet set1) (MkSet set2) = MkSet (plusFM set1 set2)
unionManySets :: Ord a => [Set a] -> Set a
unionManySets ss = foldr union emptySet ss
minusSet :: Ord a => Set a -> Set a -> Set a
minusSet (MkSet set1) (MkSet set2) = MkSet (minusFM set1 set2)
intersect :: Ord a => Set a -> Set a -> Set a
intersect (MkSet set1) (MkSet set2) = MkSet (intersectFM set1 set2)
addToSet :: Ord a => Set a -> a -> Set a
addToSet (MkSet set) a = MkSet (addToFM set a ())
delFromSet :: Ord a => Set a -> a -> Set a
delFromSet (MkSet set) a = MkSet (delFromFM set a)
elementOf :: Ord a => a -> Set a -> Bool
elementOf x (MkSet set) = isJust (lookupFM set x)
isEmptySet :: Set a -> Bool
isEmptySet (MkSet set) = sizeFM set == 0
mapSet :: Ord a => (b -> a) -> Set b -> Set a
mapSet f (MkSet set) = MkSet (listToFM [ (f key, ()) | key <- keysFM set ])
cardinality :: Set a -> Int
cardinality (MkSet set) = sizeFM set
-- fair enough...
instance (Eq a) => Eq (Set a) where
(MkSet set_1) == (MkSet set_2) = set_1 == set_2
(MkSet set_1) /= (MkSet set_2) = set_1 /= set_2
-- but not so clear what the right thing to do is:
{- NO:
instance (Ord a) => Ord (Set a) where
(MkSet set_1) <= (MkSet set_2) = set_1 <= set_2
-}
|