Last active
October 7, 2018 09:03
-
-
Save michaelfeng/b58bb37a8548b09b9377d84cc3463bc3 to your computer and use it in GitHub Desktop.
BFS_template_java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// T 指代任何你希望存储的类型 | |
Queue<T> queue = new LinkedList<>(); | |
Set<T> set = new HashSet<>(); | |
set.add(start); | |
queue.offer(start); | |
while (!queue.isEmpty()) { | |
T head = queue.poll(); | |
for (T neighbor : head.neighbors) { | |
if (!set.contains(neighbor)) { | |
set.add(neighbor); | |
queue.offer(neighbor); | |
} | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// T 指代任何你希望存储的类型 | |
queue = [] | |
set = set() | |
set.add(start) | |
queue.append(start) | |
while len(queue) > 0: | |
size = len(queue) | |
for x in xrange(size): | |
head = queue.pop(0); | |
for neighbor in head.neighbors: | |
if neighbor not set: | |
set.add(neighbor) | |
queue.append(neighbor) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// T 指代任何你希望存储的类型 | |
queue = [] | |
set = set() | |
set.add(start) | |
queue.append(start) | |
while len(queue) > 0: | |
head = queue.pop(0); | |
for neighbor in head.neighbors: | |
if neighbor not set: | |
set.add(neighbor) | |
queue.append(neighbor) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
bfs template