本文整理汇总了C++中Stack::IsFull方法的典型用法代码示例。如果您正苦于以下问题:C++ Stack::IsFull方法的具体用法?C++ Stack::IsFull怎么用?C++ Stack::IsFull使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Stack
的用法示例。
在下文中一共展示了Stack::IsFull方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: main
void main()
{
srand(time(0));
Stack ST;
char c;
// пока стек не заполнится
while(!ST.IsFull()){
c=rand()%4+2;
ST.Push(c);
}
// пока стек не освободится
while(c=ST.Pop()){
cout<<c<<" ";
}
cout<<"\n\n";
}
示例2:
Stack operator+(const Stack& s) const
{
// copy the first list
Stack t = *this;
Stack u = *this;
Node *n = s.top;
// iterate through the second list and copy each element to the new list
while (n != NULL && !t.IsFull())
{
t.Push(n->data);
n = n->link;
}
n = t.top;
while (n != NULL && !t.IsEmpty())
{
u.Push(n->data);
t.Pop();
n = t.top;
}
return u;
}
示例3:
TEST(Stack, isnt_full_stack_IsFull_0)
{
Stack<int> *S = new Stack<int>;
S->Push(1);
EXPECT_EQ(0, S->IsFull());
}
示例4:
TEST(STACK, can_check_fullness)
{
Stack<int>* s = new Stack<int>;
s->Push(5);
EXPECT_EQ(0, s->IsFull());
}