Database
aa300.txt
Associated article: Algorithm Alley
Tags: Database
Published source code accompanying the article by Mingfu Gong in which he examines group sorting algorithms, which are well-suited for applications where recursion is either not allowed or inefficient. Mingfu presents an N*logN adaptive group sort algorithm.
Algorithm Alley by Mingfu Gong Example 1 gsort1() running time <= gLoop*N/2 + 2*gLoop*N*log(N)/log(N2/N1). Example 2 gsort2() running time <= (gLoop+2)*N/2 + 2*N*log(N)/log(N2/N1) + 2*(gLoop-1)*N*log(log(N))/log(N2/N1). ...


