changed regression test scripts

This commit is contained in:
2009-07-01 07:14:39 +00:00
parent e78de0f959
commit dd36ca0725
6 changed files with 1960 additions and 36 deletions

View File

@ -35,7 +35,6 @@ function qsort(A, left, right, i, last) {
last = left
for (i = left+1; i <= right; i++)
{
# print A[i] "/" A[left] "....." (A[i] < A[left])
if (A[i] < A[left])
{
swap(A, ++last, i)