| 27 | q = new int[len], loc = new int[len]; |
| 28 | memset(loc, 255, len << 2); } |
| 29 | ~heap() { delete[] q; delete[] loc; } |
| 30 | void push(int n, bool fix = true) { |
| 31 | if (len == count || n >= len) { |
| 32 | #ifdef RESIZE |
nothing calls this directly
no outgoing calls
no test coverage detected