Skip to content

Commit 7fd75f4

Browse files
authored
Update README.md
1 parent d6d683c commit 7fd75f4

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Graphs/BFS/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ The algorithm works as follows:
2121
## Input & Output
2222
### Input:
2323

24+
<img width=50% src="../BFS/Images/input.jpg">
25+
2426
```python
2527
graph = {
2628
'A': ['B', 'C', 'D'],
@@ -31,6 +33,8 @@ graph = {
3133
}
3234
```
3335
### Output:
36+
<img width=50% src="../BFS/Images/output.jpg">
37+
3438
```python
3539
Breadth-first Search: A B C D E
3640
```

0 commit comments

Comments
 (0)