mirror of
https://codeberg.org/JasterV/word-ladder.hs.git
synced 2026-04-26 18:10:06 +00:00
143 lines
4.5 KiB
Haskell
143 lines
4.5 KiB
Haskell
{-# LANGUAGE ScopedTypeVariables #-}
|
|
{-# LANGUAGE TupleSections #-}
|
|
{-# OPTIONS_GHC -Wno-unrecognised-pragmas #-}
|
|
|
|
{-# HLINT ignore "Use map once" #-}
|
|
|
|
module Graph
|
|
( DiGraph,
|
|
hasNode,
|
|
addNode,
|
|
empty,
|
|
addEdge,
|
|
addEdges,
|
|
buildDiGraph,
|
|
children,
|
|
deleteEdge,
|
|
deleteEdges,
|
|
deleteNode,
|
|
deleteNodes,
|
|
bfsSearch,
|
|
dfsSearch,
|
|
)
|
|
where
|
|
|
|
import qualified Data.AssocMap as M
|
|
import Data.Bifunctor (second)
|
|
import Data.Function ((&))
|
|
import qualified Data.List as L
|
|
|
|
type DiGraph a = M.AssocMap a [a]
|
|
|
|
empty :: DiGraph a
|
|
empty = M.empty
|
|
|
|
hasNode :: (Eq a) => DiGraph a -> a -> Bool
|
|
hasNode = flip M.member
|
|
|
|
addNode :: (Eq a) => DiGraph a -> a -> DiGraph a
|
|
addNode graph node = M.insert node [] graph
|
|
|
|
addEdge :: (Eq a) => (a, a) -> DiGraph a -> DiGraph a
|
|
addEdge (node, child) = M.alter insertEdge node
|
|
where
|
|
insertEdge Nothing = Just [child]
|
|
insertEdge (Just nodes) = Just $ L.nub (child : nodes)
|
|
|
|
addEdges :: (Eq a) => [(a, a)] -> DiGraph a -> DiGraph a
|
|
addEdges edges graph = foldr addEdge graph edges
|
|
|
|
buildDiGraph :: (Eq a) => [(a, [a])] -> DiGraph a
|
|
buildDiGraph = foldr (\(node, childs) -> M.insert node (L.nub childs)) M.empty
|
|
|
|
children :: (Eq a) => a -> DiGraph a -> [a]
|
|
children = M.findWithDefault []
|
|
|
|
deleteNode :: (Eq a) => a -> DiGraph a -> DiGraph a
|
|
deleteNode = M.delete
|
|
|
|
deleteNodes :: (Eq a) => [a] -> DiGraph a -> DiGraph a
|
|
deleteNodes nodes graph = foldr deleteNode graph nodes
|
|
|
|
deleteEdge :: (Eq a) => (a, a) -> DiGraph a -> DiGraph a
|
|
deleteEdge (node, child) = M.alter aux node
|
|
where
|
|
aux Nothing = Nothing
|
|
aux (Just nodes) = Just (L.delete child nodes)
|
|
|
|
deleteEdges :: (Eq a) => [(a, a)] -> DiGraph a -> DiGraph a
|
|
deleteEdges edges graph = foldr deleteEdge graph edges
|
|
|
|
addMultiplePredecessors :: (Eq a) => [(a, [a])] -> DiGraph a -> DiGraph a
|
|
addMultiplePredecessors [] graph = graph
|
|
addMultiplePredecessors ((node, childs) : xs) graph =
|
|
let edges = L.map (,node) childs
|
|
in addMultiplePredecessors xs (addEdges edges graph)
|
|
|
|
type SearchState a = ([a], DiGraph a, DiGraph a)
|
|
|
|
type SearchResult a = Maybe (DiGraph a)
|
|
|
|
bfsSearch :: forall a. (Eq a) => DiGraph a -> a -> a -> Maybe [a]
|
|
bfsSearch initialGraph start end
|
|
| start == end = Just [start]
|
|
| otherwise = findSolution <$> bfsSearch' ([start], initialGraph, empty)
|
|
where
|
|
findSolution :: DiGraph a -> [a]
|
|
findSolution predecessors = L.reverse (aux end)
|
|
where
|
|
aux node = case children node predecessors of
|
|
[] -> [node]
|
|
(x : _) -> node : aux x
|
|
|
|
bfsSearch' :: SearchState a -> SearchResult a
|
|
bfsSearch' ([], _, _) = Nothing
|
|
bfsSearch' (frontier, graph, predecessors) =
|
|
let graph' =
|
|
-- Create a new graph with the frontier nodes removed
|
|
deleteNodes frontier graph
|
|
neighboursMap =
|
|
-- Associate each node to its neighbours
|
|
L.map (\node -> (node, children node graph)) frontier
|
|
-- Filter the neighbours that have already been visited
|
|
& L.map (second $ L.filter (`M.member` graph'))
|
|
|
|
-- Add all the neighbours of each node as predecessors of the node
|
|
predecessors' = addMultiplePredecessors neighboursMap predecessors
|
|
|
|
-- Put together all the neighbours into the next frontier
|
|
frontier' = L.concatMap snd neighboursMap
|
|
in if end `L.elem` frontier'
|
|
then
|
|
Just predecessors
|
|
else
|
|
bfsSearch' (frontier', graph', predecessors')
|
|
|
|
type Path a = [a]
|
|
|
|
type DfsSearchResult a = Either (DiGraph a) (Path a)
|
|
|
|
dfsSearch :: forall a. (Eq a) => DiGraph a -> a -> a -> Maybe (Path a)
|
|
dfsSearch initialGraph start end =
|
|
case dfsSearch' initialGraph start [] of
|
|
Right path -> Just path
|
|
Left _ -> Nothing
|
|
where
|
|
searchNeighbours :: [a] -> Path a -> DiGraph a -> DfsSearchResult a
|
|
searchNeighbours [] _ graph = Left graph
|
|
searchNeighbours (x : xs) path graph = case dfsSearch' graph x path of
|
|
-- If a path was found, just return it
|
|
Right path' -> Right path'
|
|
-- If no path was found, keep searching on the updated graph
|
|
Left graph' -> searchNeighbours xs path graph'
|
|
|
|
dfsSearch' :: DiGraph a -> a -> [a] -> DfsSearchResult a
|
|
dfsSearch' graph node path
|
|
| not (hasNode graph node) = Left graph -- If already visited
|
|
| node == end = Right path'
|
|
| otherwise =
|
|
let neighbours = children node graph -- Get neighbouring nodes
|
|
graph' = deleteNode node graph -- Mark node as visited
|
|
in searchNeighbours neighbours path' graph'
|
|
where
|
|
path' = path ++ [node] -- New path
|