> Java > java지도 시간 > 본문

중위에서 후위로의 변환에서 괄호를 처리하는 방법은 무엇입니까?

Mary-Kate Olsen
풀어 주다: 2024-11-17 19:59:02
원래의
159명이 탐색했습니다.

How to Handle Parentheses in Infix to Postfix Conversions?

중위에서 후위로의 변환에서 괄호 처리

중위 표현식을 후위 표현식으로 변환하려면 괄호를 주의 깊게 처리해야 합니다. 괄호가 있으면 올바른 작업 순서를 결정하는 데 어려움이 있습니다. 이 문제를 해결하려면 다음 접근 방식을 사용할 수 있습니다.

괄호 처리 메커니즘

왼쪽 괄호 푸시: 왼쪽 괄호가 나타나면 이를 연산자 스택으로 푸시합니다.

오른쪽 괄호 처리: 오른쪽 괄호:

  1. 스택에서 연산자를 팝하고 여는 괄호가 나타날 때까지 이를 출력 문자열에 추가합니다.
  2. 여는 괄호를 찾지 못하고 스택이 비어 있으면 이는 일치하지 않는 닫는 괄호.
  3. 여는 괄호가 발견되면 stack.
  4. 입력 스택에서 오른쪽 괄호를 팝합니다.

코드 구현

다음 Java 코드는 toPostFix() 메서드를 수정하여 괄호를 처리하는 방법을 보여줍니다. :

public String toPostFix() {
    StringBuilder postfixstr = new StringBuilder();

    Stack<Token> in_fix = new Stack<>();
    Stack<Token> post_fix = new Stack<>();

    for (int i = tokens.length - 1; i >= 0; i--) {
        t = new Token(tokens[i]);
        in_fix.push(t);
    }

    //there are still tokens to process
    while (!in_fix.empty()) {
        // is a number
        if (in_fix.peek().type == 1) {     
            postfixstr.append(in_fix.pop().toString());
        } 

        // is an operator and the stack is empty
        else if (in_fix.peek().type == 3 && post_fix.empty()) {   
            post_fix.push(in_fix.pop());
        } 

        // is an operator that has higher priority than the operator on the stack
        else if (in_fix.peek().type == 3 && in_fix.peek().isOperator() > post_fix.peek().isOperator()) {
            post_fix.push(in_fix.pop());
        } 

        // is an operator that has lower priority than the operator on the stack
        else if (in_fix.peek().type == 3 && in_fix.peek().isOperator() <= post_fix.peek().isOperator()) {
            postfixstr.append(post_fix.pop());
            post_fix.push(in_fix.pop());
        } 

        // opening (
        else if (in_fix.peek().type == 4) {   
            post_fix.push(in_fix.pop());
        }

        // closing )
        else if(in_fix.peek().type == 5){
            while(!(post_fix.isEmpty() || post_fix.peek().type == 4)){
                 postfixstr.append(post_fix.pop());
            }
            if (post_fix.isEmpty())
                ; // ERROR - unmatched )
            else
                post_fix.pop(); // pop the (
            in_fix.pop(); // pop the )
        }

        //puts the rest of the stack onto the output string
        if (in_fix.empty()) {
            while (!post_fix.empty()) {
                postfixstr.append(post_fix.pop());
            }
        }
    }

    return postfixstr.toString();
}
로그인 후 복사

이러한 단계를 구현하면 toPostFix() 메서드는 다음과 같은 표현식을 효과적으로 처리할 수 있습니다. 괄호를 사용하여 올바른 연산 순서를 보장하고 원하는 후위 표현식을 생성합니다.

위 내용은 중위에서 후위로의 변환에서 괄호를 처리하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
저자별 최신 기사
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿