------
## 最终结论
```python
import heapq

def heap_queue_smallest(nums, k):
    return heapq.nsmallest(k, nums)
```