中括弧を使って数式展開を評価するプログラムを書く必要があります。入力の最初の行は評価する式の数です。問題は、入力の最初の行が合計式の数を作る方法を知らないことです。また、入力は(2*(3+5))
である必要がありますが、コードは(" 2 * (3 + 5)")
しか受け付けません。私はすでにスペースを削除するためにreplaceAll()を使用していますが、正しい実行は誤りです。スペイン語のコメントは間違いです。スタック配列の中置操作
Output that I want 29 21
import java.util.Stack;
import java.util.Scanner;
public class Stacks
{
public static int evaluarop(String string)
{
//Pasar el string a un arreglo de Char;
// index nombre del arreglo de Chars para saber en que char va.
char[] index = string.toCharArray();
// Crea un Stack 'numero' de tipo Integer con la clase Stack<E>
Stack<Integer> numero = new Stack<Integer>();
// Crea un Stack 'simbolo' de tipo Character con la clase Stack<E>
Stack<Character> simbolo = new Stack<Character>();
//For inicia el bucle
for (int i = 0; i < index.length; i++)
{
// Index = char actual
// Index en la posición actual es un espacio en blanco, pasar al siguiente char.
if (index[i] == ' ')
continue;
// Si el index actual es un numero ponerlo en el stack de numero.
// Si el index es un char del 0 al 9
if (index[i] >= '0' && index[i] <= '9')
{
// If pregunta si el index es un char del 0 al 9
// StringBuffer() = construye un string de almacenamiento sin caracteres
// y con capacidad inicial de 16 caracteres
StringBuffer sbuf = new StringBuffer();
// Si es un numero formado por mas de un digito.
while (i < index.length && index[i] >= '0' && index[i] <= '9')
sbuf.append(index[i++]);
// Inserta en el Stack de numeros.
// ParseInt pasa el String y lo retorna como un entero.
numero.push(Integer.parseInt(sbuf.toString()));
}
// Si el index acutal es '(', hacer push a stack simbolo.
else if (index[i] == '(')
simbolo.push(index[i]);
// Si el index actual es ')' prepara para hacer la operacion.
else if (index[i] == ')')
{
// While peek para ver el simbolo actual hasta que no sea un (.
while (simbolo.peek() != '(')
// Hace el push al resultado de la operacion.
// operandop() hace la operacion correspondiente al char de simbolo correspondiente.
// Numero.pop() agarra el numero para operar.
numero.push(operando(simbolo.pop(), numero.pop(), numero.pop()));
// Quita del arreglo el simbolo ya utilizado.
simbolo.pop();
}
// Si el index actual es un simbolo de operación.
else if (index[i] == '+' || index[i] == '-' || index[i] == '*' || index[i] == '/')
{
// While si el char hasta arriba del Stack simbolo tiene la misma o mayor
// jerarquia de operaciones que el char de simbolo.
// Aplica el operador en la cima del Stack simbolo
// Mientras que el Stack de simbolo no esta vacio hace lo anterior.
while (!simbolo.empty() && prioridad(index[i], simbolo.peek()))
numero.push(operando(simbolo.pop(), numero.pop(), numero.pop()));
// Hace Push al char actual del Stack simbolo
simbolo.push(index[i]);
}
}
while (!simbolo.empty())
numero.push(operando(simbolo.pop(), numero.pop(), numero.pop()));
// Stack numero contiene el resultado, hace pop() para regresarlo.
return numero.pop();
}
// Si la operacion2 es de mayor importancia que operacion1; regresa true
public static boolean prioridad(char operacion1, char operacion2)
{
if (operacion2 == '(' || operacion2 == ')')
return false;
if ((operacion1 == '*' || operacion1 == '/') && (operacion2 == '+' || operacion2 == '-'))
return false;
else
return true;
}
// Aplica la operación correspondiente mediante un switch con el caracter de simbolo.
// Regresa el resultado.
public static int operando(char operacion, int num1, int num2)
{
switch (operacion)
{
case '+':
return num1 + num2;
case '-':
return num1 - num2;
case '*':
return num1 * num2;
case '/':
return num1/num2;
}
return 0;
}
// Main probador
public static void main(String[] args)
{
System.out.println("Operaciones con stacks.");
Scanner sc = new Scanner(System.in);
//int totalop = sc.nextInt();
//for(int i = 0; i < totalop;i++)
//{
System.out.println("Op: ");
//String string = sc.nextLine();
//System.out.println(Stacks.evaluarop(string));
System.out.println(Stacks.evaluarop("10+2*6"));
System.out.println(Stacks.evaluarop("10 + 2 * 6"));
}
}
ここでコードは正しく動作しますが、別の質問があります。最初の入力で、必要な数式の総数をどのように管理できますか?私は最初の入力の大きさの配列を作成してその式を格納しますか?そして、どのように私はそれぞれの表現を得るのですか? – Isragca
あなたのメインは正しかったですね。最初の数字を読んでから、ループごとに次の行を読んでforループを実行して、List of Stringの中に入れるか、あなたがそれを必要としない場合は、文字列を格納します。 – bracco23