Introduction - If you have any usage issues, please Google them yourself
Implement a Bernoulli tree. The following operations are implemented:
1.insert X, adding integer X to the priority queue
2.delete, the minimum value in the priority queue is popped out
3.min, output minimum
The initial priority queue is empty.