前缀表达式、中缀表达式和后缀表达式是三种不同的算术表达式表示方式,它们主要区别在于运算符相对于操作数的位置。

1. 中缀表达式(Infix Expression)

这是我们日常最常见的表达式形式,运算符位于两个操作数之间,例如:A + B。中缀表达式符合人类的阅读和理解习惯,但在计算机处理中,需要考虑运算符的优先级和括号的嵌套关系,解析相对复杂。

2. 前缀表达式(Prefix Expression)

也称为波兰表达式,运算符位于操作数之前,例如:+ A B。前缀表达式的优点是无需考虑运算符的优先级和括号,计算顺序由表达式本身决定,适合计算机直接解析和计算。

3. 后缀表达式(Postfix Expression)

也称为逆波兰表达式,运算符位于操作数之后,例如:A B +。与前缀表达式类似,后缀表达式也不需要考虑运算符的优先级和括号,计算顺序由表达式本身决定,适合计算机直接解析和计算。

用途

在计算机科学中,前缀和后缀表达式被广泛应用于表达式求值、编译器设计和计算器等领域。它们的主要优势在于消除了对运算符优先级和括号的需求,简化了表达式的解析过程。例如,在编译器中,源代码中的中缀表达式通常会被转换为后缀表达式,以便于生成目标代码。

此外,后缀表达式在计算器的实现中也有应用。通过将中缀表达式转换为后缀表达式,可以利用栈结构高效地计算表达式的值。这种方法避免了处理运算符优先级和括号嵌套的复杂性,提高了计算效率。

总的来说,前缀和后缀表达式在计算机领域提供了一种简洁且高效的表达和计算方式,广泛应用于各种计算和解析任务中。


<<< - 计算表达式时转为后缀表达式用栈进行计算 - >>>


以下是一个完整的 C++ 程序,演示如何使用递归方法将中缀表达式构建为表达式二叉树,并提供中序遍历以验证树的结构:

#include <iostream>
#include <stack>
#include <string>
#include <cctype>

// 定义二叉树节点结构
struct TreeNode {
    char value; // 操作符或操作数
    TreeNode* left;
    TreeNode* right;
    TreeNode(char val) : value(val), left(nullptr), right(nullptr) {}
};

// 判断字符是否为操作符
bool isOperator(char c) {
    return c == '+' || c == '-' || c == '*' || c == '/';
}

// 获取操作符的优先级
int precedence(char op) {
    if (op == '+' || op == '-') return 1;
    if (op == '*' || op == '/') return 2;
    return 0;
}

// 将中缀表达式转换为后缀表达式
std::string infixToPostfix(const std::string& infix) {
    std::stack<char> operators;
    std::string postfix;
    for (char ch : infix) {
        if (std::isdigit(ch)) {
            postfix += ch;
        } else if (ch == '(') {
            operators.push(ch);
        } else if (ch == ')') {
            while (!operators.empty() && operators.top() != '(') {
                postfix += operators.top();
                operators.pop();
            }
            if (!operators.empty()) operators.pop(); // 弹出 '('
        } else if (isOperator(ch)) {
            while (!operators.empty() && precedence(operators.top()) >= precedence(ch)) {
                postfix += operators.top();
                operators.pop();
            }
            operators.push(ch);
        }
    }
    while (!operators.empty()) {
        postfix += operators.top();
        operators.pop();
    }
    return postfix;
}

// 根据后缀表达式构建表达式二叉树
TreeNode* constructTree(const std::string& postfix, int& index) {
    if (index < 0) return nullptr;
    char ch = postfix[index--];
    TreeNode* node = new TreeNode(ch);
    if (isOperator(ch)) {
        node->right = constructTree(postfix, index);
        node->left = constructTree(postfix, index);
    }
    return node;
}

// 构建表达式二叉树的接口函数
TreeNode* buildExpressionTree(const std::string& infix) {
    std::string postfix = infixToPostfix(infix);
    int index = postfix.size() - 1;
    return constructTree(postfix, index);
}

// 中序遍历表达式二叉树
void inorderTraversal(TreeNode* root) {
    if (root) {
        if (root->left) {
            std::cout << "(";
            inorderTraversal(root->left);
        }
        std::cout << root->value;
        if (root->right) {
            inorderTraversal(root->right);
            std::cout << ")";
        }
    }
}

// 释放二叉树内存
void freeTree(TreeNode* root) {
    if (root) {
        freeTree(root->left);
        freeTree(root->right);
        delete root;
    }
}

int main() {
    std::string infixExpression;
    std::cout << "请输入中缀表达式(仅包含数字和操作符 +, -, *, /,不含空格):";
    std::cin >> infixExpression;

    TreeNode* expressionTree = buildExpressionTree(infixExpression);

    std::cout << "中序遍历结果:";
    inorderTraversal(expressionTree);
    std::cout << std::endl;

    freeTree(expressionTree);
    return 0;
}

程序说明:

  1. 节点结构定义:TreeNode 结构体用于表示表达式二叉树的节点,包含值(操作符或操作数)以及指向左右子节点的指针。
  2. 操作符判断与优先级:isOperator 函数用于判断字符是否为操作符,precedence 函数返回操作符的优先级。
  3. 中缀转后缀:infixToPostfix 函数将中缀表达式转换为后缀表达式,便于后续构建二叉树。
  4. 构建表达式树:constructTree 函数根据后缀表达式递归构建表达式二叉树,buildExpressionTree 函数作为接口,接受中缀表达式并返回构建好的二叉树。
  5. 中序遍历:inorderTraversal 函数对表达式树进行中序遍历,并在必要时添加括号,以正确表示表达式的结构。
  6. 内存释放:freeTree 函数递归释放二叉树的内存,防止内存泄漏。
  7. 主函数:main 函数获取用户输入的中缀表达式,构建表达式树,并输出中序遍历结果。

注意事项:

通过运行上述程序,您可以将中缀表达式转换为表达式二叉树,并通过中序遍历输出原始的中缀表达式。