Advertisement
Guest User

Untitled

a guest
May 16th, 2018
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.31 KB | None | 0 0
  1. #ifndef SEARCHTREEBIN_H
  2. #define SEARCHTREEBIN_H
  3.  
  4. class CSearchTreeBinInt;
  5.  
  6. class CSearchTreeBin
  7. {
  8. public:
  9.     CSearchTreeBin(void);
  10.  
  11.     void Insert(int);
  12.     void Print();
  13.     ~CSearchTreeBin();      //Destruktor
  14.     int GetNrOfNodes(void);
  15. private:
  16.     CSearchTreeBinInt *pInternalRep;
  17.  
  18. };
  19.  
  20. #endif  // SEARCHTREEBIN_H
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement