Skip to content

Instantly share code, notes, and snippets.

@rchatsiri
Created October 6, 2010 16:40
Show Gist options
  • Save rchatsiri/613642 to your computer and use it in GitHub Desktop.
Save rchatsiri/613642 to your computer and use it in GitHub Desktop.
#include<vector>
template<typename T>
class Stack{
public:
void push(T const&);
const T pop();
bool isEmpty()const;
T top()const;
private:
std::vector<T> element;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment