CS2400 - Project 2 Stacks - Postfix
i) Group Members : John Salinas(JohnSalinas123), Priscilla Ballesteros(PBallesteros02), Daniel Rodriguez(drodriguez97)
(Book)Read and Study textbook from pages 164 to page 168 (All Members)
- "A Problem Solved: Transforming an Infix Expression"
Set up core files of project with given code from source code (John Salinas, JohnSalinas123)
(Excel)Use a stack to manually convert the given infix expression to postfix (Daniel Rodriguez, drodriguez97)
- a * b / (c - a) + d * e
- answer sheet must show the conversion process step by step
(Coding)Use LinkedStack class to implement algorithm convertToPostFix (John Salinas, JohnSalinas123s)
(Coding)Write a main method to test implementation, convertToPostFix (John Salinas, JohnSalinas123)
(Book)Read and Study textbook from pages 168 to page 170 (All members)
- "A Problem Solved: Evaluating Postfix Expressions"
(Excel)Use a stack to manually evaluate given postfix expression (Daniel Rodriguez, drodriguez97)
- Values are given in instructions
(Coding)Use ResizeableArrayStack class to implement the algorithm evaluatePostfix (Priscilla Ballesteros, PBallesteros02)
(Coding)Write a main method to test implementation, evaluatePostfix (Priscilla Ballesteros, PBallesteros02)
Javadoc comments (John Salinas, JohnSalinas123)
Screencast recording, talk about your code briefly, less than 3 minutes (All members)
Unit testing on added methods using unit test framework (John Salinas, JohnSalinas123)