4.60 beta

This commit is contained in:
Igor Pavlov
2008-08-19 00:00:00 +00:00
committed by Kornel Lesiński
parent 173c07e166
commit c10e6b16f6
107 changed files with 490 additions and 503 deletions

View File

@@ -1,5 +1,5 @@
/* Sort.c -- Sort functions
2008-03-13
2008-08-17
Igor Pavlov
Public domain */
@@ -27,7 +27,7 @@ void HeapSort(UInt32 *p, UInt32 size)
UInt32 k = i;
HeapSortDown(p, k, size, temp)
}
while(--i != 0);
while (--i != 0);
}
/*
do
@@ -82,7 +82,7 @@ void HeapSortRef(UInt32 *p, UInt32 *vals, UInt32 size)
UInt32 temp = p[i];
HeapSortRefDown(p, vals, i, size, temp);
}
while(--i != 0);
while (--i != 0);
}
do
{