Search:

Type: Posts; User: mia_tech

Search: Search took 0.08 seconds.

  1. [SOLVED] Re: need help converting from infix to postfix notation

    Thanks man!... I got it working! you've been very helpful

    cheers
  2. [SOLVED] Re: need help converting from infix to postfix notation

    Here are the other two classes needed for this program, and you should have a text file datafile.txt with a simple expression like 1 + 2 $

    package postfixstack;

    public class Node<T> {

    ...
  3. [SOLVED] Re: need help converting from infix to postfix notation

    mine does have the import statements, I just forgot to put them in the post. The problem with my output is that I'm only printing the numbers out, I can't figure out why I'm not displaying the...
  4. [SOLVED] need help converting from infix to postfix notation

    guys, I need to convert from infix to postfix notation. I'm reading from a file containing the following example

    input: 2 + 3 ( 4 - 3 ) * 10 $

    $ = eol

    output: 2 3 4 3 - 10 * +

    I'm...
Results 1 to 4 of 4