(i, y, b, data)
| 7449 | } |
| 7450 | |
| 7451 | function comparePivot(i, y, b, data) { |
| 7452 | i *= 2 |
| 7453 | var x = data[i] |
| 7454 | if(x < y) { |
| 7455 | return true |
| 7456 | } else if(x === y) { |
| 7457 | return data[i+1] < b |
| 7458 | } |
| 7459 | return false |
| 7460 | } |
| 7461 | |
| 7462 | function quickSort(left, right, data) { |
| 7463 | var sixth = (right - left + 1) / 6 | 0, |
no outgoing calls
no test coverage detected
searching dependent graphs…