int count_stack_number(const STACK_NODE* pStackNode)
{
return pStackNode->top;
}
建议: 堆栈是函数调用的基础,是递归调用的基础,是很多问题的根源,建议朋友们平时有时间好好练习一下。