Share code: 8 Puzzle Code - Queue.h
#include "statenode.h"
class Queue{
public:
StateNode* head;
StateNode* tail;
Queue();
~Queue();
void deleteNode(StateNode*);
void add(char* , char*);
BOOL isEmpty();
StateNode* get();
};
Thursday, May 8, 2008
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment