SIS
Symmetric Index Structures
/Users/dbr/ma/src/bas/lml/sort.h
Go to the documentation of this file.
00001 #ifndef _HEADER_FILE_SORT_
00002 #define _HEADER_FILE_SORT_
00003 
00004 void Sort( void * set, UINT numberOfElements, SINT (*Cmp)(void *, UINT, UINT), void (*Swap)(void *, UINT, UINT) );
00005 UINT BinarySearch( const void * set, UINT startPos, UINT length, const void * object, SINT (*Cmp)(const void *, UINT, const void *) );
00006 
00007 #endif