Stxxl: C++ library for extra large data sets 続きを読む
C++ の string と vector の reserve() の挙動 C++ の string と vector には前もって容量を確保するための reserve() というメンバ関数があります。何気なく使っていた関数ですが最近になって興味深い挙動に気づきました。 reserve() の基本 string と vector ... 続きを読む
C++初心者の私がC++をやめたくなった瞬間。なにをいまさらな。 続きを読む
Standard Template Library: Containers A container is a holder object that stores a collection other objects (its elements). They are implemented as class templates, which allows a great flexibility in the types supported as elements.The conta... 続きを読む
Introduction The Multi-Core Standard Template Library (MCSTL) is a parallel implementation of the standard C++ library. It makes use of multiple processors and/or multiple cores of a processor with shared memory. It blends in transparently an... 続きを読む