school/cs235/lab05/deque.h

19 lines
359 B
C
Raw Normal View History

2016-04-06 20:46:10 -07:00
#ifndef __DEQUE_H__
#define __DEQUE_H__
#include "linkedlist.h"
class deque {
public:
linkedlist l;
bool addToDequeLeft(int id);
bool addToDequeRight(int id);
int removeFromDequeLeft();
int removeFromDequeRight();
int showTopOfDequeLeft();
int showTopOfDequeRight();
int showSizeOfDeque();
bool in_deque(int id);
};
#endif