I m在考虑使用STXXL,但要求我将数据库副本输入一个单一的平坦档案,然后我可以使用STXXL进行外部分析(这将使较小的档案库,整理,然后将其重新编成另一个单册)。 是否有更好的方法对数据进行分类,或者我是否应当采用STXXL类数据?
If I have an algorithm which is comprised of (let s say) three sub-algorithms, all with different O() characteristics, e.g.: algorithm A: O(n) algorithm B: O(log(n)) algorithm C: O(n log(n)) How do ...