-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbusca-largura.js
88 lines (75 loc) · 1.53 KB
/
busca-largura.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
const myFriends = [
{
name: "Alice",
sellMango: false,
},
{
name: "Bob",
sellMango: true,
},
{
name: "Claire",
sellMango: false,
},
];
const bobsFriend = [
{
name: "Anuj",
sellMango: false,
},
{
name: "Peggy",
sellMango: false,
},
];
const alicesFriend = [
{
name: "Peggy",
sellMango: false,
},
];
const clairesFriend = [
{
name: "Thom",
sellMango: false,
},
{
name: "Jhony",
sellMango: false,
},
];
const grafo = {};
grafo["me"] = myFriends;
grafo["bob"] = bobsFriend;
grafo["alice"] = alicesFriend;
grafo["claire"] = clairesFriend;
grafo["anuj"] = [];
grafo["peggy"] = [];
grafo["thom"] = [];
grafo["jhony"] = [];
let searchQueue = [];
searchQueue = grafo["me"];
let loop = 0;
while (searchQueue.length !== 0) {
const person = searchQueue.shift();
loop++;
try {
if (person.sellMango) {
console.log("opaa, essa pessoa vende manga", person.name);
console.log(loop);
break;
} else {
// busca o meu amigo no grafo, e recupera os amigos dele, para adicionar futuramente a fila
const searchIfFriendOfMyFriendSellMango =
grafo[`${person.name.toLocaleLowerCase()}`];
// aqui vou passar por cada um da lista dos amigos do meu amigo e adicionar na searchQueue
if (searchIfFriendOfMyFriendSellMango.length > 0)
searchIfFriendOfMyFriendSellMango.forEach((friend) => {
searchQueue.push(friend);
});
}
} catch (err) {
console.error(err);
}
}
console.log("ppppp", loop);