Skip to content

Commit 704ae9c

Browse files
committed
Add day 55
1 parent d17c655 commit 704ae9c

File tree

4 files changed

+22
-0
lines changed

4 files changed

+22
-0
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,8 @@ Motivate yourself to code daily till 60 days, and see the magic! Coding will bec
8181
| [Day 51](./day51) | [Circular List](./day51) | [http://codetoexpress.tech/dc/day51/](http://codetoexpress.tech/dc/day51/) | **Intermediate** |
8282
| [Day 52](./day52) | [Sort and Reverse](./day52) | [http://codetoexpress.tech/dc/day52/](http://codetoexpress.tech/dc/day52/) | **Intermediate** |
8383
| [Day 53](./day53) | [Implement a Tree](./day53) | [http://codetoexpress.tech/dc/day53/](http://codetoexpress.tech/dc/day53/) | **Intermediate** |
84+
| [Day 54](./day54) | [Breadth First Search](./day54) | [http://codetoexpress.tech/dc/day54/](http://codetoexpress.tech/dc/day54/) | **Intermediate** |
85+
| [Day 55](./day55) | [Depth First Search](./day55) | [http://codetoexpress.tech/dc/day55/](http://codetoexpress.tech/dc/day55/) | **Intermediate** |
8486

8587
## [More Problems](./BONUS/README.md)
8688

day55/JavaScript/DFS.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
// To be added

day55/README.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
![cover](./cover.png)
2+
3+
# Day 55 - Depth First Search
4+
5+
Ques) Write a program to implement the depth first traversal,
6+
7+
1. Inorder Traversal
8+
2. Preorder Traversal
9+
3. Postorder Traversal
10+
11+
## Solution
12+
13+
## JavaScript Implementation
14+
15+
### [Solution](./JavaScript/BFS.js)
16+
17+
```js
18+
// To be added
19+
```

day55/cover.png

142 KB
Loading

0 commit comments

Comments
 (0)