fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. template<class T>
  5. class Linklist
  6. {
  7. public:
  8. Linklist();
  9. Linklist(Linklist<T> & a);
  10. ~Linklist();
  11. };
  12. template<class T>
  13. Linklist<T>::Linklist()
  14. {
  15. }
  16. template<class T>
  17. Linklist<T>::Linklist(Linklist<T> & a)
  18. {
  19. }
  20. template<class T>
  21. Linklist<T>::~Linklist()
  22. {
  23. }
  24.  
  25. int main() {
  26. // your code goes here
  27. return 0;
  28. }
Success #stdin #stdout 0s 3292KB
stdin
Standard input is empty
stdout
Standard output is empty