Waiting for answer This question has not been answered yet. You can hire a professional tutor to get the answer.

QUESTION

Parsing Infix ExpressionsIntroduction This assignment will give you practice with Java, interfaces (not Java interfaces, but the more general

Parsing Infix ExpressionsIntroduction

This assignment will give you practice with Java, interfaces (not Java interfaces, but the more general notion), and build tools (ant, jar).

You will program calculator in Java that parses an infix expression into postfix, and then evaluates it.

You will use ant to build your program.

The Assignment

You will write aprogram that parses infix expressions (described below) into appropriate Tokens (operator or operand), stored in some linear container (ArrayList ?), passes the infix expression to a function that returns the expression to postfix form, then passes it to a function which evaluates the postfix expression, returns an integer.

We'll be doing only integer arithmetic. No float types. Also, though the inputs are positive, the intermediate results might not be.

The operators you will encounter are +, -, *, /, % (modulus). You must also be prepared to handle parenthesis.

Your code will be documented properly.

All will be done through an ant file.

I will also run Javadoc; I expect to get something useful out.

Your code

I expect to see, at a minimum, 2 methods:

  • infix2postfix
  • evalPostfix

I've written Token classes for you (the files are in this directory). You do need to fill in the Operator.getPrec() method, assign appropriate (relative) precedences to the operators.

The 2 types, Operand and Operator share a base class, Token, so that you can store an entire expression, in a generic ArrayList which holds Tokens. We need to get used to generics. Sample.java, in the directory, shows the creation and storage of various Tokens in a generic collection.

opType is an example of how we did "enums" pre- Java 1.5. Note that you can make these types smarter by assigning precedence right there. You're welcome to make this modification.

Yes, you need to use my Token classes.

Input

Your program will read a file called input.infix that contains a number of expressions, one per line.

Each line has, at most, 80 characters. Tokens will be separated by white space. Operands will be strictly non-negative integers. Operators are: { + - * / % } for addition, subtraction, multiplication, division, and modulus, respectively.

Here is a sample input:

13 + 23 - 42 * 23 * ( 5 - 2 ) % 5

A sample input file can be found here.

For my part, I promise that all expressions are valid.

Output

Your program will output, for each input expression, on one line:

postfix expression = result

, where result is the value of expression.

There will be one expression per line (same as the input). Single-space only, please.

So, given the input, above, I'd expect the output to be:

13 23 + 42 2 * - = -483 5 2 - * 5 % = 4

Documentation

I am NOT looking for a lot of comments here. Remember, your code should read like a book. But, each class should have a description, and each method should have a description and a discussion of inputs, side-effects, etc.

You will use Javadoc-style comments. HTML documentation will be created from your code, using ant (and javadoc, of course).

The HTML files will end up in a subdirectory of your source dir (which is also the CWD) called docs/.

See CS265/Labs/Java/Javadoc/ for an example.

Ant

You will include a build.xml that has, at a minimum, the following targets:

  • compile - compiles all of your .java files.
  • run - runs your program, assuming that the input file is in the current directory. Depends on the compile target.
  • Note, the code will need to be compiled from your source. I will delete all class files before we start, so... The run target will make sure all of your source files are run through javac.
  • doc - runs javadoc on all of your source files, creating files in ./docs

Note, since you're supplying build.xml, the names for the rest of the code doesn't matter. You can have 1 class, or 18 (though, that is probably overkill). The filenames don't matter to me (that is, they should be good names, but I don't need to know them ahead of time).

Algorithms

Show more
LEARN MORE EFFECTIVELY AND GET BETTER GRADES!
Ask a Question