fix: replace c++ with cpp for language postfix
This commit is contained in:
committed by
Kristofer Koishigawa
parent
7d097e62ac
commit
22f52296bc
@@ -108,7 +108,7 @@ public class BubbleSort {
|
||||
}
|
||||
```
|
||||
### Example in C++
|
||||
```c++
|
||||
```cpp
|
||||
// Recursive Implementation
|
||||
void bubblesort(int arr[], int n)
|
||||
{
|
||||
|
@@ -64,7 +64,7 @@ public class Heapsort {
|
||||
}
|
||||
```
|
||||
Implementation in C++
|
||||
```C++
|
||||
```cpp
|
||||
#include <iostream>
|
||||
using namespace std;
|
||||
void heapify(int arr[], int n, int i)
|
||||
|
Reference in New Issue
Block a user