本文整理汇总了C++中Solution::IsPopOrder方法的典型用法代码示例。如果您正苦于以下问题:C++ Solution::IsPopOrder方法的具体用法?C++ Solution::IsPopOrder怎么用?C++ Solution::IsPopOrder使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Solution
的用法示例。
在下文中一共展示了Solution::IsPopOrder方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: main
int main()
{
int a[] = {1, 2, 3, 4, 5};
int b[] = {4, 3, 5, 2, 1};
vector<int> vec1(a, a + 5);
vector<int> vec2(b, b + 5);
Solution S;
if (S.IsPopOrder(vec1, vec2))
cout<<"yes"<<endl;
else
cout<<"no"<<endl;
return 0;
}
示例2: main
// 以下为测试部分
int main()
{
Solution sol;
int in[] = {1,2,3,4,5};
int a[] = {4,5,3,2,1};
int b[] = {4,3,5,1,2};
vector<int> invec(in,in+5);
vector<int> vec1(a,a+5);
vector<int> vec2(b,b+5);
//vector<int> invec(0);
//vector<int> vec1(0);
//vector<int> vec2(0);
cout<<"Is the sequence possible pop order ?: "<<sol.IsPopOrder(invec,vec1)<<endl;
cout<<"Is the sequence possible pop order ?: "<<sol.IsPopOrder(invec,vec2)<<endl;
return 0;
}