momo  3.8
momo Documentation

MSVC GCC Clang AppleClang IntelLLVM

momo (Memory Optimization is the Main Objective)

This project contains an implementation of the C++ containers, similar to the standard set/map and unordered_set/map, but much more efficient in memory usage. As for the operation speed, these containers are also better than the standard ones in most cases (benchmark of unordered containers, benchmark of ordered containers, benchmark sources).

Classes are designed in close conformity with the standard C++20 including exception safety guarantees. Compiler must support C++11.

Deviations from the standard

  • Container items must be movable (preferably without exceptions) or copyable, similar to items of std::vector.
  • All iterators and references to items will become invalid after each addition or removal of the item and should not be used.
  • In map and unordered_map type reference is not the same as value_type&, so for (auto& p : map) is illegal, but for (auto p : map) or for (const auto& p : map) or for (auto&& p : map) is allowed.

The main ideas

  • The implementation of set/map is based on a B-tree.
  • unordered_set/map are hash tables with buckets in the form of small arrays.
  • Memory pools are used to speed up the memory operations.

Usage

Just copy the folder include/momo in your source code. This folder contains only header files.

Classes set/map and unordered_set/map are located in subfolder stdish, namespace momo::stdish.

Some documentation is here.

Other classes

  • stdish::unordered_set_open and stdish::unordered_map_open are based on open addressing hash tables.
  • stdish::vector_intcap is vector with internal capacity. This vector doesn't need dynamic memory while its size is not greater than user-defined constant.
  • stdish::unordered_multimap is similar to std::unordered_multimap, but each of duplicate keys is stored only once.
  • stdish::multiset and stdish::multimap are similar to std::multiset and std::multimap.
  • stdish::unsynchronized_pool_allocator is allocator with a pool of memory for containers like std::list or std::map. Each copy of the container keeps its own memory pool. Memory is released not only after destruction of the object, but also in case of removal sufficient number of items.
  • Folder momo also contains many of the analogous classes with non-standard interface, but more flexible, namely HashSet, HashMap, HashMultiMap, TreeSet, TreeMap, Array, SegmentedArray, MemPool.

DataTable

momo::DataTable is similar to Boost.MultiIndex, but its API looks like ADO.NET DataTable. Some examples are here.

Supported compilers

  • MS Visual C++ (19.0+, Visual Studio 2015+)
  • GCC (4.9+) with -std=c++11
  • Clang (3.6+) with -std=c++11
  • Apple Clang (8.1+, Xcode 8.3+) with -std=c++11
  • Intel C++ with -std=c++11