-
Notifications
You must be signed in to change notification settings - Fork 4
/
breadth-first-search.js
57 lines (51 loc) · 1.68 KB
/
breadth-first-search.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
const graph = {
'you': ['alice', 'bob', 'claire'],
'bob': ['anuj', 'peggy'],
'alice': ['peggy'],
'claire': ['thom', 'jonny'],
'anuj': [],
'peggy': [],
'thom': [],
'jonny': [],
}
class Bfs {
/**
* Создаю очередь и массив проверенных.
*/
constructor() {
this.queue = [];
this.searched = [];
};
/**
* Проверяю последнюю букву в имени. Если == 'm', тогда это продавец.
*/
isSeller(person) {
return person.charAt(person.length - 1) === 'm';
}
/**
* Вызываю функцию с текущим человеком.
* Добавляю в очередь его друзей.
* Беру первого друга и проверяю продавец ли он.
* Если да, тогда вывожу продавца в консоль.
* Иначе добавляю его в this.searched, а в this.queue ставлю его друзей.
*/
findSeller(name) {
if (!Array.isArray(name)) return;
this.queue = this.queue.concat(name);
while (this.queue.length > 0) {
const person = this.queue.shift();
if (this.searched.indexOf(person) === -1) {
if (this.isSeller(person)) {
console.log(`${person} is seller`);
return person;
}
else {
this.searched.push(person);
this.queue = this.queue.concat(graph[person]);
};
}
}
}
}
const search = new Bfs();
search.findSeller(graph.you)