请问下,c++中front在哪个头文件里

intd(intn,intm){stack<int>x;//mustincludeheadline"stack"x.push(n);x.push(m);while(1){... int d(int n,int m)
{
stack<int>x; // must include headline "stack"
x.push(n);x.push(m);
while(1)
{
int y=x.front();
x.pop();
int z=x.front();
x.pop();
if(z%y==0)
return y;
x.push(y);
x.push(z%y);
这是我的代码,包含了一个stack的头文件,但出现以下:
error C2039: 'front' : is not a member of 'stack<int,class std::deque<int,class std::allocator<int> > >'
请问front是哪个头文件里的
谢谢!
展开
 我来答
帐号已注销
2008-10-30 · TA获得超过2326个赞
知道小有建树答主
回答量:419
采纳率:83%
帮助的人:216万
展开全部
钱能书上的吧~
书上错了
不能用front()
用top()就行了
front()不是stack的成员
C++ code:
//=============eg5-6-1===========================
//filename:Recursive_Functions.cpp
//递归函数: 求两个数的最在公约数(递归与消去递归)
//===============================================
#include <iostream>
#include <stack>
using namespace std;
//-----------------------------------------------
long gcd1(int a,int b);
long gcd2(int a,int b);
int gcd3(int a,int b);
//-----------------------------------------------
int main()
{
cout << gcd1(44,121)<<endl
<< gcd2(44,121)<<endl
<< gcd3(44,121)<<endl;
return 0;
}//---------------------------------------------
//法一:递归
long gcd1(int a,int b){
if(a%b==0)
return b;
else return gcd1(b,a%b);
}//---------------------------------------------
//法二:迭代
long gcd2(int a,int b){
for(int temp;b;a=b,b=temp)
temp=a%b;
return a;
}//---------------------------------------------
//法三:栈机制
int gcd3(int a,int b){
stack<int> x;
x.push(a);
x.push(b);
while(1){
int y = x.top();
x.pop();
int z= x.top();
x.pop();
if(z%y==0) return y;
x.push(y);x.push(z%y);
}
}//==============================================
百度网友5fbf19215
2008-10-30 · TA获得超过171个赞
知道小有建树答主
回答量:219
采纳率:0%
帮助的人:251万
展开全部
#include <stack>
If it is still useless, you can use begin() to stand for front()
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式