READ ME

Test Data:
G{(0,1,2,3,4)
  ((0,1),(0,2),(0,3),(1,0),(1,4)}

Start node is 0. Goal node is 4.


Run

% make
% ./ai3
%How many nodes: 5
%How many child nodes of Node 0 :3
%Child node for Node 0 :1
%Child node for Node 0 :2
%Child node for Node 0 :3
%How many child nodes of Node 1 :2
%Child node for Node 1 :0
%Child node for Node 1 :4
%How many child nodes of Node 2 :0
%How many child nodes of Node 3 :0
%How many child nodes of Node 4 :0
%What is the start node: 0
%What is the goal node: 4
%What strategy do you want(bfs---1   dfs----2): 1

Then the result will be showed.
