Advertisement
Guest User

Untitled

a guest
May 19th, 2017
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.44 KB | None | 0 0
  1. #include <iostream>
  2. #include <fstream.h>
  3. using namespace std;
  4.  
  5. string HighestCountWordInFile(const char * filename);
  6. template <class T>
  7. class Box
  8. {
  9.     private:
  10.         int NumberOfItems;
  11.         <T> Items;
  12.    
  13.    
  14.    
  15.     public:
  16.         void Insert(T Item);
  17.         void Size();
  18.         T LastItemInserted();
  19.         void GetFirst();
  20.         void GetLast();
  21.         void GetMax();
  22. }
  23.  
  24. T Min(vector<T> smurfs)
  25. {
  26.    
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement