Recursive shifting of PRE values after delete operations. @param start update location @param diff value to subtract from PRE value
(final int start, final int diff)
| 251 | * @param diff value to subtract from PRE value |
| 252 | */ |
| 253 | void decrementPre(final int start, final int diff) { |
| 254 | if(pre >= start + diff) pre -= diff; |
| 255 | for(int c = 0; c < size; c++) nodes[c].decrementPre(start, diff); |
| 256 | } |
| 257 | |
| 258 | /** |
| 259 | * Increments the PRE value by the specified size. |