栈的基本操作和运用

头文件:#include

  1. stacks;//定义栈,type为数据类型,如int,char,float
  2. s.push()//放入栈
  3. s.top()//返回栈顶元素
  4. s.pop()//删除栈顶元素
  5. s.size()//返回栈中元素个数
  6. s.empty()//检查栈是否为空,空则返回true,否则返回flase
    在这里插入图片描述

下面用栈来打印翻转字符串。

#include<iostream>
using namespace std;
#include<stack>
int main()
{
	int n;
	char ch;	
	scanf("%d", &n); getchar();
	while (n--) {
		stack<char>s;
		while (true) {
			ch = getchar();
			if (ch == ' ' || ch == '\n' || ch == EOF) {
				while (!s.empty()) {
					printf("%c", s.top());
					s.pop();
				}
				if (ch == '\n' || ch == EOF) break;
				printf(" ");
			}
			else s.push(ch);
		}
		printf("\n");
	}
	return 0;
}

就比如我们在程序中输入 olleh !dlrow
就会输出 hello world!
在这里插入图片描述
具体怎么实现的呢?
首先这个字符串olleh !dlrow
由这个条件ch == ’ ’ || ch == ‘\n’ || ch == EOF
然后入栈将字符一个一个,遇到EOF(终止的意思)或者\n或者空格就出栈,
首先入栈后为

在这里插入图片描述

后面就出栈为hello
world!也一样
在这里插入图片描述
这样就完成了!

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值