Calico
Saturday, July 29, 2017
stack.h
#include"LinkedList.h"
class Stack{
private:
LinkedList* list;
public:
Stack();
~Stack();
int empty();
void push(int num);
int pop();
};
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
imgops
/* * imageops.c - Simple operations on images * * C laboratory exercises. * Richard Vaughan, 2014. */ #include <assert.h> ...
Lab 3: Tasks 1-3
/* * imageops.c - Simple operations on images * * C laboratory exercises. * Richard Vaughan, 2014. */ #include <assert.h> #includ...
No comments:
Post a Comment