RuntimeStringCmp.cpp #include <string> using namespace std; // function object to compare strings // - allows you to set the comparison criterion at runtime // - allows you to compare case insensitive class RuntimeStringCmp { public: // constants fo…
stl中set和map为关联式容器,会根据排序准将元素自动排序.原型如下: template<class _Kty, class _Pr = less<_Kty>, class _Alloc = allocator<_Kty> > class set template<class _Kty, class _Ty, class _Pr = less<_Kty>, class _Alloc = allocator<pair<const _Kty…