整序在这里是什么意思
对N个关键字取整数的记录进行整序,以使所有关键字为非负数的记录排在关键字为负数的记录之前,要求使用最少的附加空间,且算法的时间复杂度为O(N)。其中的整序是什么意思啊?有哪位能给个源程序看看?
/**
This can be also viewed as Partition:
partition an array into two parts,
elements of 1st part <0;
elements of 2nd part >=0.
In C++ algorithms, there is a partition() function.
*/