给出订单清单。仅支持以下操作。
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)
,它将一个订单列表复制到另一个订单列表。
我尝试解决此问题,但没有得到任何解决方案。