首页 > 其他 > 详细

栈的压入弹出序列

时间:2014-08-06 10:29:01      阅读:197      评论:0      收藏:0      [点我收藏+]

输入两个整数序列,第一个序列表示栈的压入顺序,请判断第二个序列是否为该栈的弹出顺序。假设压入栈的所有数字均不相等。

代码:

#include <iostream>
#include <stack>
#include <assert.h>


using namespace std;

bool isStackSeq(int *pPush,int *pPop,int length){
	bool isstack = false;
	if(pPush != NULL && pPop != NULL && length > 0){

		const	int *pPushNext = pPush;
		const   int *pPopNext = pPop;

		stack<int> stackData;

		while(pPopNext - pPop < length){
			//将元素入栈
			while(stackData.empty() ||  stackData.top()  !=  *pPopNext){

				if(pPushNext - pPush == length)
						break;
				
				stackData.push(*pPushNext);
				
				pPushNext ++;
			}
			if(stackData.top() != *pPopNext)
			break;
			
			stackData.pop();
			pPopNext ++;
		}
		if(stackData.empty() && pPushNext - pPush == length)
			isstack = true;

	}

	return isstack;
}



int main()
{	
	int data1[] = {1,2,3,4,5};
	int data2[] = {4,5,3,2,1};
	cout<< isStackSeq(data1,data2,sizeof(data1)/sizeof(int));

    return 0;
}

运行结果:

bubuko.com,布布扣

栈的压入弹出序列,布布扣,bubuko.com

栈的压入弹出序列

原文:http://blog.csdn.net/buyingfei8888/article/details/38396679

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!