// // Created by light on 19-12-16. // #include // std::sort #include // std::less/greater/hash #include // std::cout/endl #include // std::string #include // std::vector #include "../container1/output_container.h" using namespace std; int main() { // 初始数组 vector v{13, 6, 4, 11, 29}; cout << v << endl; // 从小到大排序 sort(v.begin(), v.end()); cout << v << endl; // 从大到小排序 sort(v.begin(), v.end(), greater()); cout << v << endl; cout << hex; auto hp = hash(); cout << "hash(nullptr) = " << hp(nullptr) << endl; cout << "hash(v.data()) = " << hp(v.data()) << endl; cout << "v.data() = " << static_cast(v.data()) << endl; auto hs = hash(); cout << "hash(\"hello\") = " << hs(string("hello")) << endl; cout << "hash(\"hellp\") = " << hs(string("hellp")) << endl; }