基础训练(三)二叉树基础概念应用

本文介绍了二叉树基础概念,并通过实例展示了如何使用后缀表达式进行算术表达式的求值。同时,提出了一个问题:如何将后缀表达式转换为在使用队列算法时能得出相同结果的表达式。文章提供了多个关于二叉树问题的代码实例,包括Subtrees、Dropping Balls、S-Trees和Parliament。
摘要由CSDN通过智能技术生成

Expressions(poj: 3367)

Arithmetic expressions are usually written with the operators in between the two operands (which is called infix notation). For example, (x+y)*(z-w) is an arithmetic expression in infix notation. However, it is easier to write a program to evaluate an expression if the expression is written in postfix notation (also known as reverse Polish notation). In postfix notation, an operator is written behind its two operands, which may be expressions themselves. For example, x y + z w - * is a postfix notation of the arithmetic expression given above. Note that in this case parentheses are not required.

To evaluate an expression written in postfix notation, an algorithm operating on a stack can be used. A stack is a data structure which supports two operations:

push: a number is inserted at the top of the stack.
pop: the number from the top of the stack is taken out.
During the evaluation, we process the expression from left to right. If we encounter a number, we push it onto the stack. If we encounter an operator, we pop the first two numbers from the stack, apply the operator on them, and push the result back onto the stack. More specifically, the following pseudocode shows how to handle the case when we encounter an operator O:

a := pop();
b := pop();
push(b O a);
The result of the expression will be left as the only number on the stack.

Now imagine that we use a queue instead of the stack. A queue also has a
push and pop operation, but their meaning is different:

push: a number is inserted at the end of the queue.
pop: the number from the front of the queue is taken out of the queue.
Can you rewrite the given expression such that the result of the algorithm using the queue is the same as the result of the original expression evaluated using the algorithm with the stack?

Input

The first line of the input contains a number T (T ≤ 200). The following T lines each contain one expression in postfix notation. Arithmetic operators are represented by uppercase letters, numbers are represented by lowercase letters. You may assume that the length of each expression is less than 10000 characters.

Output

For each given expression, print the expression with the equivalent result when using the algorithm with the queue instead of the stack. To make the solution unique, you are not allowed to assume that the operators are associative or commutative.

Sample Input

2
xyPzwIM
abcABdefgCDEF

Sample Output

wzyxIPM
gfCecbDdAaEBF

代码:

#include<iostream>
#include<cstdio>
#include<stack>
#include<queue>
#include<algorithm>
#include<cstring>
#include<string>

using namespace std;
const int maxn = 10010;

struct node
{
   
	int l, r;
	char info;
}tre[maxn];
int cnt, root;
char str[maxn];
stack<int>st;
queue<int>q;

void init() {
   
	cnt = 0, root = 0;
}

void build() {
   
	int len, i;
	len = strlen(str);
	for (i = 0; i < len; ++i) {
   
		if ('a' <= str[i] && str[i] <= 'z') {
   
			tre[cnt].info = str[i];
			tre[cnt].l = -1; tre[cnt].r = -1;
			st.push(cnt);
			cnt++;
		}
		else {
   
			tre[cnt].info = str[i];
			tre[cnt].r = st.top();
			st.pop();
			tre[cnt].l = st.top();
			st.pop();
			st.push(cnt);
			cnt++;
		}
	}
	root = st.top(); st.pop();
}

void print() {
   
	int len, i, tmp;
	i = strlen(str) - 1;
	q.push(root);
	while (!q.empty()) {
   
		tmp = q.front();
		q.pop();
		str[i--] = tre[tmp].info;
		if (tre[tmp].l != -1)
			q.push(tre[tmp
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值