将oder列表复制到另一个oder列表

时间:2014-11-30 14:18:14

标签: algorithm

给出订单清单。仅支持以下操作。

insert(n)
Insert an element in tail only if n is greater than value of current tail otherwise throw exception

empty(n)
Check if list is empty 

remove()
remove an element from tail and return value

将订单列表作为输入。我们需要编写一个函数copyList(source,destination),它将一个订单列表复制到另一个订单列表。

  • 我们不允许使用任何其他数据结构。
  • 我们最多可以使用一个临时订单列表。

我尝试解决此问题,但没有得到任何解决方案。

0 个答案:

没有答案