返回列表 發帖

指標 - 佇列(queue)

請使用指標(Pointer) 撰寫 queue,並完成以下功能:
1. 插入(Push)
2. 刪除(Pop)
3. 輸出(Print)

範例輸入1:
1 10
1 20
1 30
2
1 40
3

範例輸出1:
20 30 40

返回列表