STL之map实现(三)

接下来,实现抽象类

//C++继承

class SortedMap:public Dictionary

{

    public:

          //构造函数+析构函数

         SortMap();

        ~SortMap();

         

         bool empty() ;                       //纯虚函数----抽象类

         int  size() ;

         void insert (const pair& x) ;

         void erase(const K&  theKey);

         pair* find(const K& theKey) ; 

protected:

};


接下来,只要实现这些函数就可以了。



你可能感兴趣的:(STL)