~元素出栈、入栈顺序的合法性~

栈和队列最常考的面试题之一:  元素出栈、入栈顺序的合法性。

                                                    如入栈的序列(1,2,3,4,5),出栈序列为(4,5,3,2,1)。

主要思路:

1) 判断入栈序列与出栈序列是否为空、长度是否不相等或是否为0,若是则序列肯定不合法;

2) 建立一个辅助栈,用来存放入栈序列;

3) 循环比较栈顶元素与出栈序列。

   i) 若当前出栈序列的元素是辅助栈的栈顶元素,则删除辅助栈的栈顶元素,同时指向出栈序列的元素指针向后加1;

   ii) 若当前出栈序列的元素不是辅助栈的栈顶元素,则一直将入栈序列的元素压入栈中,直到找到与当前出栈序列元素相同的元素,再删除辅助栈的栈顶元素,同时指向出栈序列的元素指针向后加1;

4) 序列不合法的条件: 将入栈序列的所有元素压入栈中,都未能找到与当前出栈序列元素相同的元素;

5) 序列合法的条件:辅助栈为空栈,并且遍历完出栈序列的最后一个元素。

 

完整的源代码及测试用例如下:

#include <stack>

bool IsRationality(const int *input, const int *output, int in_len, int out_len)
{
	if(input == NULL || output == NULL || in_len != out_len || in_len <= 0)
	{
		return false;
	}

	int len = in_len;
	const int *cur = output;
	stack<int> stack_data;

	for(int i = 0; i < len; ++i)
	{
		stack_data.push(input[i]);

		while(stack_data.size() != 0 && stack_data.top() == *cur)
		{
			stack_data.pop();
			++cur;
		}
	}

	if(stack_data.empty())  //栈为空且遍历完最后一个元素
	{
		return true;
	}

	return false;
}

void TestIsRationality()
{
	const int input[] = {1, 2, 3, 4, 5};
	const int output[] = {4, 5, 3, 2, 1};
	int in_len = sizeof(input) / sizeof(input[0]);
	int out_len = sizeof(output) / sizeof(output[0]);

	cout<<IsRationality(input, output, in_len, out_len)<<endl;
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值