0

効率的なルックアップのために unordered_set を使用する最良の方法はどれですか?

  • ブースト(これらは次の標準になるので、これが進むべき道だと思います)
  • SGI STL
  • STLポート

これら 3 つは、Scott Meyers の『Effective STL』で言及されていますが、この本は少し古いので質問しています。

4

1 に答える 1

2

If you have to work with a pre-C++11 compiler, use boost:

  • it's almost everywhere,
  • it's a header library,
  • it's modular,
  • it's compliant with all the standards, so totally compatible with the standard library.
于 2012-05-05T09:46:12.160 に答える