算法笔记7.栈的应用:括号匹配

习题地址:http://codeup.cn/problem.php?cid=100000605&pid=1

1.注意:
若操作符为[,(,{,则直接入栈
若操作符为 ],),},则要跟[,(,{匹配 ,易错

#include 
#include  
#include 
#include 
#include 

using namespace std;

string str;
stack s;

void judge(){
	
	bool flag = true;
	for(int i=0; i>str;		
		judge();
		 
	}	
	return 0;
}

你可能感兴趣的:(算法笔记)