Skip to content

Instantly share code, notes, and snippets.

@michaelfeng
Last active October 7, 2018 09:03
Show Gist options
  • Save michaelfeng/b58bb37a8548b09b9377d84cc3463bc3 to your computer and use it in GitHub Desktop.
Save michaelfeng/b58bb37a8548b09b9377d84cc3463bc3 to your computer and use it in GitHub Desktop.
BFS_template_java
// 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);
}
}
}
// 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)
// 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)
@michaelfeng
Copy link
Author

bfs template

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment