Chinaunix首页 | 论坛 | 博客
  • 博客访问: 356920
  • 博文数量: 135
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 1106
  • 用 户 组: 普通用户
  • 注册时间: 2013-03-20 09:56
文章分类

全部博文(135)

文章存档

2017年(3)

2016年(18)

2015年(69)

2014年(39)

2013年(6)

我的朋友

分类: C/C++

2015-11-16 15:05:02

// 两个栈实现一个队列
int enqueue(int data)
{
    stack1.push(data);
}

int dequeue()
{
    if (stack2.size() == 0)
    {
        while (stack1.size() > 0)
        {
            stack2.push(stack1.pop());
            stack1.pop();
        }
    }

    int data = stack1.top();
    stack1.pop();

    return data;
}

//两个队列实现一个栈
int enstack(int data)
{
    if (queue1.size() > 0)
    {
        queue1.push(data);
    }
    else if (queue2.size() > 0)
    {
        queue2.push(data);
    }
    else
    {
        queue1.push(data);
    }
}

int destack()
{
    if (queue1.size() == 0)
    {
        while (queue2.size() > 1)
        {
            queue1.push(queue2.top());
            queue2.pop();
        }
    }

    int data = queue2.top();
    queue2.pop();

    return data;
}

阅读(485) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~