-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearchs.hpp
29 lines (25 loc) · 826 Bytes
/
searchs.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/*
* searchs.hpp
*
* Created on: 6 de out de 2015
* Author: dekonunes
*/
#ifndef SRC_BLIND_PURSUIT_ROBOT_SEARCHS_HPP_
#define SRC_BLIND_PURSUIT_ROBOT_SEARCHS_HPP_
#include <vector>
#include <iostream>
#include <ctime>
#include <unistd.h>
#include <algorithm>
#include <iterator>
#include "node.hpp"
#include "graphicInterface.hpp"
using namespace std;
void buscaProfundidade(vector<vector<int> > *, int, int, int, int);
void buscaLargura(vector<vector<int> > *, int, int, int, int);
void buscaLarguraC(vector<vector<int> > *, int, int, int, int);
void buscaCustoUniforme(vector<vector<int> > *, int, int, int, int);
void buscaA(vector<vector<int> > *, int, int, int, int);
double distanciaEuclid(int, int, int, int);
int Cost(vector<vector<int> > *, int, int);
#endif /* SRC_BLIND_PURSUIT_ROBOT_SEARCHS_HPP_ */