fork download
  1. #include <iostream>
  2. using namespace std;
  3. #include <map>
  4. #include <iterator>
  5.  
  6. template<class kType,class vType>
  7. class hashtable
  8. {
  9. private:
  10. map<kType,vType> *table;
  11. public:
  12. hashtable(kType k, vType v);
  13. ~hashtable();
  14. };
  15.  
  16. template<typename kType, typename vType>
  17. hashtable<kType, vType>::hashtable(kType k, vType v)
  18. {
  19.  
  20. }
  21.  
  22. int main() {
  23. // your code goes here
  24. return 0;
  25. }
Success #stdin #stdout 0s 15240KB
stdin
Standard input is empty
stdout
Standard output is empty