STL 或Boost 含有一种对不同类型集装箱进行对比的算法。 如果没有人写这种算法。 我将把它称作<代码>平等_contents或简单地称作qualitys
。 在主张某些算法将不同输入集装箱类型的相同内容退回时,这样做是有益的。
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 ...