程序员面试题精选100题(39)-颠倒栈[数据结构]

面试题 时间:2019-09-22 手机网站
    else

    {

        T top = stack.top();

        stack.pop();

        AddToStackBottom(stack, t);

        stack.push(top);

    }

}