Recursive implementation of Bubble sort #1240
Conversation
@kvedala As suggested by you, when I rebased that branch, that pull request got closed automatically. So, I had to create a new PR after rebasing this branch. |
|
You can also review the existing code: https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/sorting/insertion_sort.cpp for reference. |
} | ||
|
||
|
||
int main() |
Panquesito7
Oct 12, 2020
Member
Suggested change
int main()
/**
* @brief Main function
* @returns 0 on exit
*/
int main()
int main() | |
/** | |
* @brief Main function | |
* @returns 0 on exit | |
*/ | |
int main() |
Panquesito7
Oct 15, 2020
Member
Not resolved/fixed yet.
Not resolved/fixed yet.
#include<iostream> | ||
#include <array> | ||
|
||
void recBubble(std::array<int,10> arr, int n){ |
Panquesito7
Oct 12, 2020
Member
Missing function documentation.
Missing function documentation.
@@ -113,7 +113,9 @@ | |||
* [Adaline Learning](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/machine_learning/adaline_learning.cpp) | |||
* [Kohonen Som Topology](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/machine_learning/kohonen_som_topology.cpp) | |||
* [Kohonen Som Trace](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/machine_learning/kohonen_som_trace.cpp) | |||
* [Neural Network](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/machine_learning/neural_network.cpp) |
Panquesito7
Oct 12, 2020
Member
I don't know why is this being added, but I think it should be removed.
I don't know why is this being added, but I think it should be removed.
Co-authored-by: David Leal <[email protected]>
f4a7df9
to
6a9cdf9
* [Adaline Learning](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/machine_learning/adaline_learning.cpp) | ||
* [Kohonen Som Topology](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/machine_learning/kohonen_som_topology.cpp) | ||
* [Kohonen Som Trace](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/machine_learning/kohonen_som_trace.cpp) | ||
* [Neural Network](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/machine_learning/neural_network.cpp) |
aadijay3477
Oct 15, 2020
Needs a review i think it's irrelevant.
Needs a review i think it's irrelevant.
Panquesito7
Oct 15, 2020
Member
Those changes were made by the GitHub Actions itself.
AFAIK, if we revert those changes, they will be made automatically again.
Those changes were made by the GitHub Actions itself.
AFAIK, if we revert those changes, they will be made automatically again.
This pull request has been automatically marked as abandoned because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
Please ping one of the maintainers once you commit the changes requested or make improvements on the code. If this is not the case and you need some help, feel free to ask for help in our Gitter channel. Thank you for your contributions! |
Description of Change
Checklist
Notes: