fix: replace c++ with cpp for language postfix

This commit is contained in:
Randell Dawson
2019-06-20 16:00:56 -07:00
committed by Kristofer Koishigawa
parent 7d097e62ac
commit 22f52296bc
11 changed files with 20 additions and 20 deletions

View File

@@ -12,7 +12,7 @@ Depth First Search is one of the most simple graph algorithms. It traverses the
### Implementation (C++14)
```c++
```cpp
#include <iostream>
#include <vector>
#include <queue>
@@ -93,7 +93,7 @@ Worse Case Time Complexity: O(n)
Depth First Search is complete on a finite set of nodes. I works better on shallow trees.
### Implementation of DFS in C++
```c++
```cpp
#include<iostream>
#include<vector>
#include<queue>