Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <vector>
- template<class T> class BinaryHeap {
- private:
- std::vector<T> data;
- public:
- BinaryHeap();
- ~BinaryHeap();
- void put(T);
- T get();
- };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement