> 백엔드 개발 > PHP 튜토리얼 > Shunting Yard 알고리즘을 사용하여 PHP에서 계산기를 구축하는 방법은 무엇입니까?

Shunting Yard 알고리즘을 사용하여 PHP에서 계산기를 구축하는 방법은 무엇입니까?

Mary-Kate Olsen
풀어 주다: 2024-12-11 06:22:11
원래의
117명이 탐색했습니다.

How to Build a Calculator in PHP Using the Shunting Yard Algorithm?

PHP에서 계산기를 만드는 방법은 무엇입니까?

PHP에서 계산기를 만들려면 사용자가 입력한 수식을 구문 분석하고 평가해야 합니다. 이는 사용자 입력을 처리하고 수학적 연산을 적용하기 때문에 어려울 수 있습니다.

Shunting Yard 알고리즘 활용

권장되는 접근 방식 중 하나는 Shunting Yard 알고리즘을 활용하는 것입니다. 이 알고리즘은 수학적 표현을 평가하기 더 쉬운 역 폴란드 표기법(RPN)으로 변환합니다.

구현 예

다음은 Shunting Yard 알고리즘을 사용한 단순화된 예입니다.

// Terminal expression abstract class
abstract class TerminalExpression {

    public function operate() {
        return $this->value;
    }

    public function isOperator() {
        return false;
    }

    public function isParenthesis() {
        return false;
    }

    public function isNoOp() {
        return false;
    }
}

// Operator expression abstract class
abstract class Operator extends TerminalExpression {

    public function isOperator() {
        return true;
    }
}

// Stack implementation
class Stack {

    private $data = [];

    public function push($element) {
        $this->data[] = $element;
    }

    public function peek() {
        return end($this->data);
    }

    public function pop() {
        return array_pop($this->data);
    }
}

// Math class for evaluation
class Math {

    public function evaluate($expression) {
        $stack = $this->parse($expression);
        return $this->run($stack);
    }

    private function parse($expression) {
        $tokens = $this->tokenize($expression);
        $output = new Stack();
        $operators = new Stack();

        foreach ($tokens as $token) {
            $type = TerminalExpression::factory($token);

            if ($type->isOperator()) {
                $this->parseOperator($type, $output, $operators);
            } elseif ($type->isParenthesis()) {
                $this->parseParenthesis($type, $output, $operators);
            } else {
                $output->push($type);
            }
        }

        while (($op = $operators->pop())) {
            if ($op->isParenthesis()) {
                throw new RuntimeException('Mismatched Parenthesis');
            }
            $output->push($op);
        }

        return $output;
    }

    private function run(Stack $stack) {
        while (($operator = $stack->pop()) && $operator->isOperator()) {
            $value = $operator->operate($stack);
            if ($value !== null) {
                $stack->push(TerminalExpression::factory($value));
            }
        }
        return $operator ? $operator->render() : $this->render($stack);
    }

    protected function tokenize($string) {
        return preg_split('((\d+|\+|-|\(|\)|\*|/)|\s+)', $string, null, PREG_SPLIT_NO_EMPTY | PREG_SPLIT_DELIM_CAPTURE);
    }
}

$math = new Math();
$answer = $math->evaluate('(2 + 3) * 4');
var_dump($answer); // int(20)
로그인 후 복사

이 예는 Shunting Yard 알고리즘을 사용하여 간단한 수학적 계산을 구문 분석하고 평가하는 방법을 보여줍니다. 표현.

위 내용은 Shunting Yard 알고리즘을 사용하여 PHP에서 계산기를 구축하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

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