#[derive(Debug, Copy, Clone, PartialEq)] pub struct Operator { token: char, operation: fn(f64, f64) -> f64, precedence: u8, is_left_associative: bool, } #[derive(Debug, Copy, Clone)] pub enum Token { Operator(Operator), Num(f64), LParen, RParen } impl Operator { fn token_from_op(token: char, operation: fn(f64, f64) -> f64, precedence: u8, is_left_associative: bool) -> Token { Token::Operator( Operator { token, operation, precedence, is_left_associative } ) } fn operate(self, x: f64, y: f64) -> f64 { (self.operation)(x, y) } } fn main() { let input = "1 + 2 * 3"; let input = input.replace(" ", ""); let lexed = lexer(&input); let postfixed = to_postfix(lexed.unwrap()); println!("{:?}", postfixed); } fn lexer(input: &str) -> Result, String> { let mut num_vec: String = String::new(); let mut result: Vec = vec![]; for letter in input.chars() { match letter { '0'...'9' | '.' => { num_vec.push(letter); }, '+' | '-' | '/' | '*' | '^' => { // parse num buf let parse_num = num_vec.parse::().ok(); if let Some(x) = parse_num { result.push(Token::Num(x)); num_vec.clear(); } // finish let operator_token: Token = match letter { '+' => Operator::token_from_op('+', |x, y| x + y, 2, true), '-' => Operator::token_from_op('-', |x, y| x - y, 2, true), '/' => Operator::token_from_op('/', |x, y| x / y, 3, true), '*' => Operator::token_from_op('*', |x, y| x * y, 3, true), '^' => Operator::token_from_op('^', |x, y| x.powf(y), 4, false), _ => panic!("unexpected op whuuu"), }; result.push(operator_token); }, '(' => { // parse num buf let parse_num = num_vec.parse::().ok(); if let Some(x) = parse_num { result.push(Token::Num(x)); result.push(Operator::token_from_op('*', |x, y| x * y, 3, true)); num_vec.clear(); } // finish result.push(Token::LParen); }, ')' => { // parse num buf let parse_num = num_vec.parse::().ok(); if let Some(x) = parse_num { result.push(Token::Num(x)); num_vec.clear(); } // finish result.push(Token::RParen); } ' ' => {} _ => { return Err(format!("Unexpected character: {}", letter)) } } } Ok(result) } fn to_postfix(tokens: Vec) -> Result, String> { let mut postfixed: Vec = vec![]; let mut op_stack: Vec = vec![]; for token in tokens { match token { Token::Num(_) => { postfixed.push(token); println!("pushed a number {:?}", token); }, Token::Operator(current_op) => { while let Some(top_op) = op_stack.last() { match top_op { Token::LParen => { return Err(format!("Mismatched Parentheses!")) } Token::Operator(top_op) => { let tp = top_op.precedence; let cp = current_op.precedence; if tp > cp || (tp == cp && top_op.is_left_associative) { postfixed.push(op_stack.pop().unwrap()); println!("pushed an operator special {:?}", token); } else { break; } } _ => { return Err(format!("Unexpected match branch part 2")) } } } op_stack.push(token); println!("pushed an operator {:?}", token); }, Token::LParen => { op_stack.push(token); }, Token::RParen => { let mut found: bool = false; while let Some(top_op) = op_stack.last() { match top_op { Token::LParen => { let _ = op_stack.pop().unwrap(); found = true; }, _ => { postfixed.push(op_stack.pop().unwrap()); } } } if found == false { return Err(format!("Mismatched parentheses part 2")) } } } } while let Some(op) = op_stack.pop() { postfixed.push(op); } Ok(postfixed) }