简体   繁体   中英

How to output an arithmetic expression with unary operator?

I have an arithmetic expression(a string) with unary operator, and I want to put each element in an array. For example: -3+4.2*5==>output should be: -3, +, 4.2 ,* , 5(not -,3,+,4.2, *, 5) 3+-5 ==> output should be: 3,+,-5(with the unary operator) (3/(5-8)+18) 2==>output should be: (,3,/,(,5,-,8,),+,18,), ,2

Here is the code I tried so far, and the output is 3,+,-,5, which didn't put the unary operator in the front of a digit.

My question is how to put each element properly in an array.

     public class Test2 {

/**
 * @param args the command line arguments
 */
public static void main(String[] args) {
    System.out.println("Input:");
    Scanner in = new Scanner(System.in);
    String input = in.nextLine();
    String[]  arr1= splitInfixExpression(input);
    for(int i=0;i<arr1.length;i++)
    {
        System.out.println(arr1[i]);
    }

    }
  priva te static boolean isOperandChar(final char c) {
    return Character.isDigit(c) || c == '.';
   }
  private static boolean isParenthesis(final char c) {
return c=='('||c==')';
}




    private static String[] splitInfixExpression(final String input) {
    final List<String> postfixExpression = new ArrayList<>();
    boolean encounteredOperandStart = false;
    String currentOperand = "";
    for (final char c : input.toCharArray()) {
        if (encounteredOperandStart) {
            if (isOperandChar(c)) {
                currentOperand += c;
            } 


                postfixExpression.add(currentOperand);
                postfixExpression.add(String.valueOf(c));
                currentOperand = "";
                encounteredOperandStart = false;

        } else {
            if (isOperandChar(c)) {
                encounteredOperandStart = true;
                currentOperand += c;
            }

            else if(isParenthesis(c)) {
            postfixExpression.add(String.valueOf(c));
            //currentOperand = "";
           encounteredOperandStart=false;
        }  
            else{
           postfixExpression.add(String.valueOf(c));
            //currentOperand = "";
           encounteredOperandStart=false;
       }                

        }
    }
    if (!currentOperand.isEmpty()) {
        postfixExpression.add(currentOperand);
    }
    return postfixExpression.toArray(new String[postfixExpression.size()]);
}}

I think this is want you want? :)

public static List<String> splitInfixExpression(String someString){
    List<String> someList = new ArrayList<String>();
    String tempString = "";
    for (int i = 0; i < someString.length(); i++){
        if (Character.isDigit(someString.charAt(i)) || (someString.charAt(i) == '-' && someString.length() == 0) || someString.charAt(i) == '.'){
            tempString += String.valueOf(someString.charAt(i));
            tempString = tempString.trim();
        }
        else{
            if (tempString.length() > 0){
                someList.add(tempString);
            }
            tempString = String.valueOf(someString.charAt(i));
            if (someList.size() > 0 && Character.isDigit(someList.get(someList.size() - 1).charAt(someList.get(someList.size() - 1).length() - 1))){
                someList.add(tempString);
                tempString = "";
            }
            else if (tempString.trim().length() > 0 && ((!tempString.equals("-"))) && ((!tempString.equals("+")))){
                someList.add(tempString);
                tempString = "";
            }
        }
    }
    someList.add(tempString);

    return someList;
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM