数据结构例题选讲
- 二叉堆 - 插入:void push(int x){ heap[++heap_size]=x; int cur=heap_size; int father=cur/2; wh