fork(1) download
  1. #include <iostream>
  2. using namespace std;
  3. #include <cstdlib>
  4. //#include <map>
  5.  
  6. template <class type>
  7. class Trep {
  8.  
  9. public:
  10. type key;
  11. int priority, size;
  12. Trep *left, right;
  13.  
  14. Trep(type _key) :
  15. key(_key), priority(rand()), size(1), left(NULL), right(NULL) {}
  16.  
  17.  
  18. typedef std::pair<Trep<type>, Trep<type> > TrepPair; //error!
  19.  
  20. TrepPair splited(Trep &root, type key);
  21. Trep* insert(Trep &root, Trep &node);
  22.  
  23. };
  24.  
  25. int main() {
  26. return 0;
  27. }
Success #stdin #stdout 0s 2736KB
stdin
Standard input is empty
stdout
Standard output is empty