-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathGrafo.js
163 lines (156 loc) · 3.94 KB
/
Grafo.js
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
/**
* Conjunto de nos( objetos ) conectados entre si,
* sendo que cada conexao tem um peso
* @returns {Grafo}
*/
function Grafo() {
var conexoes = [];
var nos = [];
var l = 0;
this.pegarConexoesNo = function(no) {
var i = 0
, con = conexoes
, m = con.length
, c = 0
, a = [];
for (i; i < m; i++) {
if(con[i].doNo)
if (con[i].doNo.dado === no)
a[c++] = con[i];
if(con[i].paraNo)
if (con[i].paraNo.dado === no)
a[c++] = con[i];
}
return (a.length > 0 ? a : (a = null));
};
this.criarConexao = function(de, para, custo) {
if( !de || !para )return;
conexoes.push(new Conexoes());
conexoes[l].custo = custo;
conexoes[l].doNo = (de instanceof No) ? de : existeNo(de);
conexoes[l].paraNo = (para instanceof No) ? para : existeNo(para);
conexoes[l].doNo.conexoes.push(conexoes[l]);
conexoes[l].paraNo.conexoes.push(conexoes[l]);
l++;
};
this.conexoes = function() {
return conexoes.concat();
};
function existeNo(no) {
var i = 0, m = nos.length;
for (i; i < m; i++) {
if (nos[i] === no || nos[i].dado === no) {
return nos[i];
}
}
nos.push( new No(no) );
return nos[nos.length-1];
}
}
/**
* Conexao entre dois objetos
* @returns {Conexoes}
*/
function Conexoes() {
this.custo = arguments[2] || Infinity;
this.doNo = arguments[0] || null;
this.paraNo = arguments[1] || null;
}
/**
* No representa o objeto, suas conexoes e o peso acumulado
* @returns {No}
*/
function No() {
this.dado = arguments[0] || null;
this.conexoes = arguments[1] || [];
this.total = arguments[2] || 0;
}
/**
* Conjuto de conexoes entre 2 pontos
* @returns {Caminho}
*/
function Caminho() {
var lista = [];
var i = 0, m = lista.length, c = Infinity.MAX_VALUE, r = null;
/**
* Adiciona um no a lista e retorna o index do elemento
* @param {No} no
* @returns {Number}
*/
this.add = function(no) {
var n = new No();
n.dado = no;
lista.push(no);
return lista.length - 1;
};
/**
* Remove um no da lista e retorna o mesmo
* @param {type} no
* @returns {Array}
*/
this.sub = function(no) {
i = 0, m = lista.length;
for (i; i < m; i++)
if (lista[i].dado === no.dado)
return lista.splice(i, 1);
};
/**
* Procurar o no com menor custo acumulado e retorna, se existir.
* @returns {No | nulo}
*/
this.menorNo = function() {
i = 0;
m = lista.length;
c = Infinity;
r = null;
for (i; i < m; i++) {
if (lista[i].total < c) {
c = lista[i].total;
r = i;
}
}
return (r !== null) ? lista[r] : null;
};
/**
* Verifica se o no ja existe na lista
* @param {No} no
* @returns {Boolean}
*/
this.contem = function(no) {
i = 0, m = lista.length;
for (i; i < m; i++){
if (lista[i].dado === no.dado)
return true;
}
return false;
};
/**
* Pega o no desejado da lista, o
* @param {No} no
* @returns {No | nulo}
*/
this.procurar = function(no) {
i = 0, m = lista.length;
for (i; i < m; i++){
if (lista[i].dado === no.dado)
return lista[i];
else if (lista[i].dado === no.dado)
return lista[i];
}
return null;
};
/**
* Retorna a quantidade de nos do caminhos
* @returns {Number}
*/
this.length = function() {
return lista.length;
};
/**
* Retorna o caminho
* @returns {Array}
*/
this.caminho = function() {
return lista.concat();
};
}