7

わかりましたので、ファイルから後置式を読み込む必要があります。後置式には、各演算子またはオペランドを区切るスペースが必要です。これまでのところ、入力ファイルの演算子またはオペランドの間にスペースがない場合にのみ機能します。(つまり、ファイルに 12 以上ある場合、結果は 3 になります。) これを行うには、入力をトークン化する必要があると思いますが、方法がわかりません。これは私がこれまでに持っているものです。ご回答ありがとうございます。

import java.util.*;
import java.io.*;
public class PostfixCalc{
public static void main (String [] args) throws Exception {
File file = new File("in.txt");
Scanner sc = new Scanner(file);
String input = sc.next();
Stack<Integer> calc = new Stack<Integer>();
while(sc.hasNext()){
for(int i = 0; i < input.length(); i++){
    char c = input.charAt(i);
    int x = 0;
    int y = 0;
    int r = 0;
    if(Character.isDigit(c)){
       int t = Character.getNumericValue(c);
        calc.push(t);
    }
    else if(c == '+'){
        x = calc.pop();
        y = calc.pop();
        r = x+y;
        calc.push(r);
    }
     else if(c == '-'){
        x = calc.pop();
        y = calc.pop();
        r = x-y;
        calc.push(r);
    }
     else if(c == '*'){
        x = calc.pop();
        y = calc.pop();
        r = x*y;
        calc.push(r);
    }
     else if(c == '/'){
        x = calc.pop();
        y = calc.pop();
        r = x/y;
        calc.push(r);
    }
}
 }
 int a = calc.pop();
System.out.println(a);
 }
 } 
4

3 に答える 3

3

変更する必要があることがいくつかありますが、それらは段階的に行うことができます。

  1. s ではなくsStackを含むように宣言します。IntegerCharacter
  2. String入力を読み取るコードでは、 s ではなく s に依存しCharacterます。
  3. を使用してオペランドを解析しますInteger.parseInt()Stringこれはs をsに変換しIntegerます。(実際には、それらをints に変換しますが、あなたの場合、この違いは問題ではありません。)
  4. Scanner.useDelimiter()toを使用してスキャナー区切り文字を設定します\s+。これは、空白文字のシーケンスと一致します。

もちろん、入力を処理する方法は他にも無数にありますが、必要なことを実行するために既存のコードを変更する方法のアイデアを提供しようとしました。

于 2012-09-04T18:22:14.153 に答える
3

トークン化するには、区切り記号String.split()として単一のスペースを使用できます。

String[] inputs = input.split(" ");

これは、後置計算機を作成するために、単一リンクリストに基づくスタック実装を使用する、私が書いたばかりの完全なソリューションです。

A - PostFixCalculator

import java.io.BufferedReader;
import java.io.FileReader;
import java.io.IOException;

public class PostFixCalculator {

    private static final String ADD = "+"; 
    private static final String SUB = "-";
    private static final String MUL = "*";
    private static final String DIV = "/";

    public void calculateFile(String fileName) throws IOException {
        BufferedReader br = null;
        StringBuilder sb = null;
        try {
            FileReader fileReader = new FileReader(fileName);
            br = new BufferedReader(fileReader);

            sb = new StringBuilder();
            String line = br.readLine();

            while (line != null) {
                sb.append(line);
                line = br.readLine();
            }

            String input = sb.toString();
            System.out.println(input + " = " + calculate(input));
        } catch (IOException e) {
            e.printStackTrace();
        } finally {
            br.close();
        }
    }

    private int calculate(String input) {
        SinglyLinkedListStack<Integer> stack = new SinglyLinkedListStack<>();

        String[] inputs = input.split(" ");

        return handleCalculation(stack, inputs);
    }

    private static int handleCalculation(SinglyLinkedListStack<Integer> stack, String[] el) {
        int operand1, operand2;

        for(int i = 0; i < el.length; i++) {
            if( el[i].equals(ADD) || el[i].equals(SUB) || el[i].equals(MUL) || el[i].equals(DIV) ) {
                operand2 = stack.pop();
                operand1 = stack.pop();
                switch(el[i]) {
                    case ADD: {
                        int local = operand1 + operand2;
                        stack.push(local);
                        break;
                    }

                    case SUB: {
                        int local = operand1 - operand2;
                        stack.push(local);
                        break;
                    }

                    case MUL: {
                        int local = operand1 * operand2;
                        stack.push(local);
                        break;
                    }

                    case DIV: {
                        int local = operand1 / operand2;
                        stack.push(local);
                        break;
                    }
                }
            } else {
                stack.push(Integer.parseInt(el[i]));
            }
        }

        return stack.pop();
    }

}

B - SinglyLinkedListStack

public class SinglyLinkedListStack<T> {

    private int size;
    private Node<T> head;

    public SinglyLinkedListStack() {
        head = null;
        size = 0;
    }

    public void push(T element) {
        if(head == null) {
            head = new Node(element);
        } else {
            Node<T> newNode = new Node(element);
            newNode.next = head;
            head = newNode;
        }

        size++;
    }

    public T pop() {
        if(head == null)
            return null;
        else {
            T topData = head.data;

            head = head.next;
            size--;

            return topData;
        }
    }

    public T top() {
        if(head != null)
            return head.data;
        else
            return null;
    }

    public int size() {
        return size;
    }

    public boolean isEmpty() {
        return size == 0;
    }

    private class Node<T> {
        private T data;
        private Node<T> next;

        public Node(T data) {
            this.data = data;
        }

    }

}

C - デモ

import java.io.IOException;

public class PostFixCalculatorDemo {
    public static void main(String[] args) throws IOException {
        PostFixCalculator calc = new PostFixCalculator();
        calc.calculateFile("postfix.txt");
    }
}

D - サンプル入力ファイル: "postfix.txt"

6 5 2 3 + 8 * + 3 + * 

E - デモ出力

6 5 2 3 + 8 * + 3 + *  = 288
于 2016-08-10T23:05:52.657 に答える
0

スキャナーは必要ありません

単純にBufferedReaderを使用してファイルを読み取り、そのメソッド readLine を使用して行を取得します

次に使用します

String tokens[] = line.split("\\s+?") 

コード内で処理できる「トークン」の配列を取得します。

番号を識別するには、次の正規表現を使用できます。

Pattern isNumber = Pattern.compile("^\\d+?$")
if (isNumber.matcher(token).matches()) {
    push(Integer.parseInt(token));
}
于 2012-09-04T18:22:38.937 に答える