CORE SOURCE CODE solving 8 Puzzle AI problems written in MS Visual MFC C++.

COMPLETE Full set of working SOURCE CODE for the working MFC C++ program, SPEED UP your learning process,
just 4.99 USD. Email / Paypal to ahyeek@gmail.com

Full working program can be downloaded to TRY out: AI 8-puzzle (8 Puzzle) solver

Friday, May 9, 2008

8 Puzzle Code - Queue.h

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();
};

No comments: