I'm working on a project for fun that involves generating a parse tree from a regular expression. I've got it mostly working, but I'm hung up on how to integrate concatenation.
*Main> :l regex.hs
[1 of 1] Compiling Main ( regex.hs, interpreted )
Ok, modules loaded: Main.
*Main> toPostfix "a"
"a"
*Main> toPostfix "a|b"
"ab|"
*Main> toPostfix "((a|b)|c)"
"ab|c|"
*Main> toPostfix "((a|b)|c)de"
"ab|c|de"
*Main> toPostfix "((a|b)|c)*de"
"ab|c|*de"
*Main> toPostfix "(ab)*"
"ab*" -- Should be ab&*
*Main> toPostfix "(ab|bc)"
"abbc|" -- Should be ab&bc&|
Here is my code:
import Data.List
import Control.Monad
data Reg = Epsilon |
Literal Char |
Or Reg Reg |
Concat Reg Reg |
Star Reg
deriving Eq
showReg :: Reg -> [Char]
showReg Epsilon = "@"
showReg (Literal c) = [c]
showReg (Or r1 r2) = "(" ++ showReg r1 ++ "|" ++ showReg r2 ++ ")"
showReg (Concat r1 r2) = "(" ++ showReg r1 ++ showReg r2 ++ ")"
showReg (Star r) = showReg r ++ "*"
instance Show Reg where
show = showReg
evalPostfix :: String -> Reg
evalPostfix = head . foldl comb []
where
comb :: [Reg] -> Char -> [Reg]
comb (x:y:ys) '|' = (Or y x) : ys
comb (x:y:ys) '&' = (Concat y x) : ys
comb (x:xs) '*' = (Star x) : xs
comb xs '@' = Epsilon : xs
comb xs s = (Literal s) : xs
-- Apply the shunting-yard algorithm to turn an infix expression
-- into a postfix expression.
shunt :: String -> String -> String -> String
shunt o p [] = (reverse o) ++ p
shunt o [] (x:xs)
| x == '(' = shunt o [x] xs
| x == '|' = shunt o [x] xs
| otherwise = shunt (x:o) [] xs
shunt o (p:ps) (x:xs)
| x == '(' = shunt o (x:p:ps) xs
| x == ')' = case (span (/= '(') (p:ps)) of
(as, b:bs) -> shunt (as ++ o) bs xs
| x == '|' = case (p) of
'(' -> shunt o (x:p:ps) xs
otherwise -> shunt (p:o) (x:ps) xs
| x == '*' = shunt (x:o) (p:ps) xs
| otherwise = shunt (x:o) (p:ps) xs
-- | Convert an infix expression to postfix
toPostfix :: String -> String
toPostfix = shunt [] []
-- | Evaluate an infix expression
eval :: String -> Reg
eval = evalPostfix . toPostfix
In particular, the shunt function is doing all of the heavy lifting and is where the change ought to be made. (The tree can easily be built in evalPostfix.)
Now, I've spent the last few hours looking for a tutorial explaining how to do this, but haven't had any luck. I want to say that I need to be keeping track of how many hanging expressions I have, and if I would do anything that would create three, insert a '&', but that seems inefficient and I'm certain there is a better way. If anyone can see how to make a change to the code or could point me in the right direction, I would much appreciate it.