Templates Flashcards

1
Q

BFS Template

A

class Solution {

public void BFS(Node root, )
Queue<Node> queue = new LinkedList();
int stepCount = 0;</Node>

queue.add(root)
}

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q
A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly