hdu-1022-Train Problem I

题意:

给出两组数,第一组进栈,看看是否能按照第二组的顺序出栈,并不一定都是进完才出栈 。

解题思路:

用栈来做,每次比较栈顶元素和出栈的顺序是否一样一样即可出栈。

程序:

#include
#include
#include
#include
#define max 100
using namespace std;
int main()
{
    stacks;
    int n,i,j,k,result[max];
    char str1[max],str2[max];
    while(cin>>n>>str1>>str2)
    {
        j=0;i=0;k=1;
        s.push(str1[0]);
        result[0]=1;
        while(i


你可能感兴趣的:(字符串)