F (1083) : DS堆栈--行编辑

Description

使用C++的STL堆栈对象,编写程序实现行编辑功能。行编辑功能是:当输入#字符,则执行退格操作;如果无字符可退就不操作,不会报错

本程序默认不会显示#字符,所以连续输入多个#表示连续执行多次退格操作

每输入一行字符打回车则表示字符串结束

注意:必须使用堆栈实现,而且结果必须是正序输出

Input

第一行输入一个整数t,表示有t行字符串要输入

第二行起输入一行字符串,共输入t行

Output

每行输出最终处理后的结果,如果一行输入的字符串经过处理后没有字符输出,则直接输出NULL

Sample

Input
4
chinaa#
sb#zb#u
##shen###zhen###
chi##a#####
Output
china
szu
sz
NULL

AC代码:

//答案仅供参考,请勿直接复制粘贴
#include 
#include 
#include 
using namespace std;
int main() {
	int t;
	cin >> t;
	int len;
	string str;
	int count = 0;
	while (t--) {
		stack s;
		stack s1;
		cin >> str;
		len = str.length();
		int count = 0;
		for (int i = 0; i < len; i++) {
			if (str[i] != '#') {
				s.push(str[i]);
				count++;
			}
			else if (str[i] == '#') {
				if (!s.empty()) {
					s.pop();
					count--;
				}
			}
		}
		if (s.empty()) {
			cout << "NULL" << endl;
			continue;
		}
		while (!s.empty()) {
			s1.push(s.top());
			s.pop();
		}
		while (!s1.empty()) {
			cout << s1.top();
			s1.pop();
		}
		cout << endl;
	}
}

你可能感兴趣的:(C++,数据结构,算法,c++,数据结构,开发语言)