struct ListStack
{
int data;
ListStack* next;
};
bool isEmptyListStack(ListStack* l)
{
if (!l->next)
return true;
else
return false;
}
bool isFullListStack(ListStack* l)
{
int cnt = 0;
while (l->next)//这个位置报错,但是l->next不是空指针直接跳出循环了吗,为什么会出现报错现象呢?
{
++cnt;
l = l->next;
}
if (cnt == SIZE)
return true;
else
return false;
}
void pushListStack(ListStack* l, const int& n)
{
if (!isFullListStack(l))
{
ListStack* p = new ListStack;
p->data = n;
l->next = p;
l = l->next;
}
else
exit(1);
}
int popListStack(ListStack* l)
{
if (!isEmptyListStack(l))
{
while (l->next->next)
l = l->next;
int n = l->next->data;
l->next = nullptr;
return n;
}
else
exit(2);
}
int main(int argc, char* argv[])
{
ListStack* l = new ListStack;
l->next = nullptr;//已经将l->next设置为空指针了
pushListStack(l, 1);
pushListStack(l, 2);
pushListStack(l, 3);
std::cout << popListStack(l) << " " << popListStack(l) << " " << popListStack(l);
return 0;
}
while判断时报错:引发了异常: 读取访问权限冲突。
l 是 0xF~7。
while判断的时候不应该直接跳出吗,为什么还报错呢?