ListTree-0.2.1: src/Data/List/Tree.hs
{-# LANGUAGE FlexibleContexts, FlexibleInstances, UndecidableInstances #-}
-- | Functions for iterating trees.
-- A 'List' whose underlying monad is also a 'List' is a tree.
--
-- It's nodes are accessible, in contrast to the list monad,
-- which can also be seen as a tree, except only its leafs
-- are accessible and only in "dfs order".
--
-- > import Control.Monad.Trans.List.Funcs (repeatM)
-- > import Data.List.Class (genericTake, scanl, takeWhile, toList, lastL)
-- > import Prelude hiding (scanl, takeWhile)
-- >
-- > appendToEnd xs x = xs ++ [x]
-- > bits = scanl appendToEnd [] (repeatM "01")
-- >
-- > > take 3 (bfsLayers bits)
-- > [[""],["0","1"],["00","01","10","11"]]
-- >
-- > > take 10 (bfs bits)
-- > ["","0","1","00","01","10","11","000","001","010"]
-- >
-- > > dfs (genericTake 4 bits)
-- > ["","0","00","000","001","01","010","011","1","10","100","101","11","110","111"]
-- >
-- > > toList $ genericTake 3 bits
-- > [["","0","00"],["","0","01"],["","1","10"],["","1","11"]]
--
-- Examples of pruning with 'prune' and 'takeWhile':
--
-- > > dfs . takeWhile (not . isSuffixOf "11") $ genericTake 4 bits
-- > ["","0","00","000","001","01","010","1","10","100","101"]
-- >
-- > > lastL . takeWhile (not . isSuffixOf "11") $ genericTake 4 bits
-- > ["000","001","010","01","100","101","1"]
-- >
-- > > lastL . prune (not . isSuffixOf "11") $ genericTake 4 bits
-- > ["000","001","010","100","101"]
--
module Data.List.Tree (
Tree, TreeT, TreeItemM,
-- | Search algorithms
dfs, bfs, bfsLayers,
bestFirstSearchOn,
bestFirstSearchSortedChildrenOn,
sortChildrenOn,
-- | Pruning methods
prune, pruneM,
branchAndBound
) where
import Control.Monad (
MonadPlus(..), guard, join, liftM, liftM2, when)
import Control.Monad.ListT (ListT(..))
import Control.Monad.Trans.State (StateT, get, put)
import Control.Monad.Trans.Class (MonadTrans(lift))
import Data.List.Class (
List(..), ListItem(..), cons,
foldrL, fromList, mergeOn, transpose,
sortOn, toList, transformListMonad)
-- | A 'type-class synonym' for Trees.
class (List t, List (ItemM t)) => Tree t
instance (List t, List (ItemM t)) => Tree t
type TreeT m a = ListT (ListT m) a
type TreeItemM t = ItemM (ItemM t)
search :: Tree t => (ItemM t (ItemM t a) -> ItemM t a) -> t a -> ItemM t a
search merge =
merge . foldrL step mzero
where
step a = return . cons a . merge
-- | Iterate a tree in DFS pre-order. (Depth First Search)
dfs :: Tree t => t a -> ItemM t a
dfs = search join
-- | Transform a tree into lists of the items in its different layers
bfsLayers :: Tree t => t a -> ItemM t (ItemM t a)
bfsLayers =
search (liftM join . transpose) . liftM return
-- | Iterate a tree in BFS order. (Breadth First Search)
bfs :: Tree t => t a -> ItemM t a
bfs = join . bfsLayers
-- | Best First Search given a scoring function.
bestFirstSearchOn ::
(Ord b, Tree t) => (a -> b) -> t a -> ItemM t a
bestFirstSearchOn = search . mergeOn
mergeOnSortedHeads ::
(Ord b, List l) => (a -> b) -> l (l a) -> l a
mergeOnSortedHeads f sortedHeads =
-- naming convention for this func:
-- fooh = head foo
-- foot = tail foo
-- foo_ = foo reconstructed after deconstruction
-- (reconstructed so that monadic action isn't ran twice)
joinL $ step sortedHeads mzero $
\h t -> step h (mergeOnSortedHeads f t) $
\hh ht -> return . cons hh . mergeOnSortedHeads f $ bury ht t
where
step list onNil onCons = do
li <- runList list
case li of
Nil -> return onNil
Cons x xs -> onCons x xs
cache x xs func = func (cons x xs)
bury a b =
joinL $ step a b $
\ah at -> cache ah at $
\a_ -> step b (cons a_ mzero) $
\bh bt -> step bh (bury a_ bt) $
\bhh bht -> cache bhh bht $
\bh_ -> return $ if f ah <= f bhh
then cons a_ . cons bh_ $ bt
else cons bh_ . bury a_ $ bt
-- | Prune a tree or list given a predicate.
-- Unlike 'takeWhile' which stops a branch where the condition doesn't hold,
-- prune "cuts" the whole branch (the underlying MonadPlus's mzero).
prune :: MonadPlus m => (a -> Bool) -> ListT m a -> ListT m a
prune = pruneM . fmap return
pruneM :: MonadPlus m => (a -> m Bool) -> ListT m a -> ListT m a
pruneM cond list = do
x <- list
lift (cond x >>= guard)
return x
-- | Best-First-Search given that a node's children are in sorted order (best first) and given a scoring function.
-- Especially useful for trees where nodes have an infinite amount of children, where 'bestFirstSearchOn' will get stuck.
--
-- Example: Find smallest Pythagorian Triplets
--
-- > import Control.Monad
-- > import Control.Monad.Generator
-- > import Control.Monad.Trans.Class
-- > import Data.List.Tree
-- > import Data.Maybe
-- >
-- > pythagorianTriplets =
-- > catMaybes .
-- > fmap fst .
-- > bestFirstSearchSortedChildrenOn snd .
-- > generate $ do
-- > x <- lift [1..]
-- > yield (Nothing, x)
-- > y <- lift [1..]
-- > yield (Nothing, x + y)
-- > z <- lift [1..]
-- > yield (Nothing, x + y + z)
-- > lift . guard $ x^2 + y^2 == z^2
-- > yield (Just (x, y, z), 0)
-- >
-- > > print $ take 10 pythagorianTriplets
-- > [(3,4,5),(4,3,5),(6,8,10),(8,6,10),(5,12,13),(12,5,13),(9,12,15),(12,9,15),(15,8,17),(8,15,17)]
bestFirstSearchSortedChildrenOn ::
(Ord b, Tree t) => (a -> b) -> t a -> ItemM t a
bestFirstSearchSortedChildrenOn =
search . mergeOnSortedHeads
-- | Generalized "Branch and Bound". A method for pruning.
--
-- The result of this function
-- would usually be given to another search algorithm,
-- such as `dfs`, in order to find the node with lowest value.
--
-- This augments the regular search by pruning the tree.
-- Given a function to calculate a lower and upper bound for a subtree,
-- we keep the lowest upper bound (hence the State monad) encountered so far,
-- and we prune any subtree whose lower bound is over the known upper bound.
branchAndBound ::
(Ord b, Tree t) => (a -> (Maybe b, Maybe b))
-> t a -> TreeT (StateT (Maybe b) (TreeItemM t)) a
branchAndBound boundFunc =
pruneM cond . transformListMonad (transformListMonad lift)
where
cond x = do
upperSoFar <- lift get
if Just True == liftM2 (>=) lower upperSoFar
then return False
else do
-- this "when" clause isn't before the if,
-- so upper bound won't be calculated if not needed.
-- this optiminzation is based on (upper >= lower)
when
( Nothing == upperSoFar
|| Just True == liftM2 (<) upper upperSoFar
) (lift (put upper))
return True
where
(lower, upper) = boundFunc x
sortChildrenOn :: (Ord b, Tree t) => (a -> b) -> t a -> ListT (ItemM t) a
sortChildrenOn func =
ListT . joinL . liftM (fromList . sortOn f) . toList . runList . transformListMonad id
where
f (Cons x _) = Just (func x)
f _ = Nothing