20_2.cpp
资源名称:c.rar [点击查看]
上传用户:puke2000
上传日期:2022-07-25
资源大小:912k
文件大小:1k
源码类别:

C#编程

开发平台:

Visual C++

  1. //20_2.cpp
  2. #include <iostream.h>
  3. template<class T>
  4. class Stack{
  5. public:
  6.   Stack();
  7.   ~Stack(){ delete[] stack; }
  8.   void Push(T& n);
  9.   T Pop();
  10. private:
  11.   static const int SIZE;
  12.   T* stack;
  13.   int tos;
  14. };
  15. template<class T>
  16. const int Stack<T>::SIZE = 100;
  17. template<class T>
  18. Stack<T>::Stack()
  19.   :tos(0)
  20. {
  21.   stack = new T[SIZE];
  22. }
  23. template<class T>
  24. void Stack<T>::Push(T& n)
  25. {
  26.   if(tos==100) return;
  27.   stack[tos++] = n;
  28. }
  29. template<class T>
  30. T Stack<T>::Pop()
  31. {
  32.   if(tos==0) return T(0);
  33.   return stack[--tos];
  34. }
  35. void main()
  36. {
  37.   Stack<int> ai;
  38.   Stack<char> ac;
  39.   Stack<float> af;
  40.   
  41.   int i[3]={3,5,7};
  42.   ai.Push(i[0]);
  43.   ai.Push(i[1]);
  44.   ai.Push(i[2]);
  45.   char c[3]={'2','5','9'};
  46. ac.Push(c[0]);
  47.   ac.Push(c[1]);
  48.   ac.Push(c[2]);
  49.   float f[2]={1.5,3.8};
  50. af.Push(f[0]);
  51.   af.Push(f[1]);
  52.   
  53.   cout <<ai.Pop() <<" ";
  54. cout <<ai.Pop() <<" ";
  55. cout <<ai.Pop() <<endl;
  56.   cout <<ac.Pop() <<" ";
  57. cout <<ac.Pop() <<" ";
  58. cout <<ac.Pop() <<endl;
  59.   cout <<af.Pop() <<" ";
  60. cout <<af.Pop() <<" " <<endl;
  61. }