I'm writing a simple calculator in SML , and my code need to support 3 kinds of parentheses :
( )
[ ]
{ }
Where inside { } , can appear { } , [ ] , ( ) expressions ,
Inside [ ] , can appear [ ] , ( ) expressions ,
And inside ( ) , can appear only ( ) expressions .
Meaning is , that { } has the highest priority , the [ ] - the middle priority , and ( ) has the lowest priority .
What would be the best approach for accomplishing that ?
I've written a big method with too much loops and recursions that runs on separate cases , but I don't think this is the best approach .
Any suggestions would be greatly appreciated
Regards
EDIT :
The relevant code :
signature CalculatorOperation = sig
datatype token =
(* paranthesis *)
Lpar3 (* { *)
| Rpar3 (* } *)
| Lpar2 (* [ *)
| Rpar2 (* ] *)
| Lpar (* ( *)
| Rpar (* ) *)
the structure :
structure CalculatorOperation : CalculatorOperation = struct
datatype token =
(* paranthesis *)
Lpar3 (* { *)
| Rpar3 (* } *)
| Lpar2 (* [ *)
| Rpar2 (* ] *)
| Lpar (* ( *)
| Rpar (* ) *)
Scanner :
fun stringScanner s [] = (toToken s,[])
| stringScanner s (c::l)
= case c::l of
#" "::r => if s = "" then (stringScanner "" l) else (toToken s,l)
(* paranthesis *)
| #"{"::r => if s = "" then (Lpar3,r) else (toToken s,c::l)
| #"}"::r => if s = "" then (Rpar3,r) else (toToken s,c::l)
| #"["::r => if s = "" then (Lpar2,r) else (toToken s,c::l)
| #"]"::r => if s = "" then (Rpar2,r) else (toToken s,c::l)
| #"("::r => if s = "" then (Lpar,r) else (toToken s,c::l)
| #")"::r => if s = "" then (Rpar,r) else (toToken s,c::l)
Parser :
structure CalculatorParser : CalculatorParser = struct
open CalculatorOperation
exception CalculatorParser
datatype expr = NumNode of int
| UminusNode of expr
| MultiplyNode of expr * expr
| DivNode of expr * expr
| PlusNode of expr * expr
| MinusNode of expr * expr
| ModuloNode of expr * expr
| PowerNode of expr * expr
fun parserBrackets l = parserHelper2 l
and parserHelper l
= case l of
(Num n)::l1 => (NumNode n,l1)
| Lpar3::l1 => let val (en,l2) = parserBrackets l1 in case l2 of Rpar3::l3 => (en,l3)
| _ => raise CalculatorParser end
| Lpar2::l1 => let val (en,l2) = parserBrackets l1 in case l2 of Rpar2::l3 => (en,l3)
| _ => raise CalculatorParser end
| Lpar::l1 => let val (en,l2) = parserBrackets l1 in case l2 of Rpar::l3 => (en,l3)
| _ => raise CalculatorParser end