-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathbreadth_first_search.rs
78 lines (63 loc) · 2.12 KB
/
breadth_first_search.rs
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
use std::collections::HashMap;
use crate::queue::Queue;
type Graph = HashMap<String, Vec<String>>;
#[allow(dead_code)]
fn breadth_first_search<F>(graph: Graph, name: String, pred: F) -> Option<String>
where
F: Fn(String) -> bool,
{
let mut queue: Queue<String> = Queue::new();
let mut searched: Vec<String> = Vec::new();
queue.enqueue_many(&graph[&name]);
while !queue.is_empty() {
let current = queue.dequeue();
if searched.iter().find(|e| e == &¤t).is_none() {
if pred(current.clone()) {
return Some(current);
}
queue.enqueue_many(&graph[¤t]);
searched.push(current);
}
}
None
}
#[cfg(test)]
mod tests {
use super::*;
fn make_graph() -> Graph {
let mut graph: Graph = HashMap::new();
graph.insert(
String::from("you"),
vec!["alice".to_string(), "bob".to_string(), "claire".to_string()],
);
graph.insert(
String::from("bob"),
vec!["anuj".to_string(), "peggy".to_string()],
);
graph.insert(String::from("alice"), vec!["peggy".to_string()]);
graph.insert(
String::from("claire"),
vec!["thom".to_string(), "jonny".to_string()],
);
graph.insert(String::from("anuj"), Vec::new());
graph.insert(String::from("peggy"), Vec::new());
graph.insert(String::from("thom"), Vec::new());
graph.insert(String::from("jonny"), Vec::new());
graph
}
#[test]
fn finds_peggy_in_the_graph() {
let graph = make_graph();
let predicate = |n: String| n == String::from("peggy");
let result = breadth_first_search(graph, String::from("you"), predicate);
assert!(result.is_some());
assert_eq!(Some(String::from("peggy")), result);
}
#[test]
fn doesnt_finds_pickle_in_the_graph() {
let graph = make_graph();
let predicate = |n: String| n == String::from("pickle");
let result = breadth_first_search(graph, String::from("you"), predicate);
assert!(result.is_none());
}
}