C-Plus-Plus
C-Plus-Plus copied to clipboard
Added Iterative Quick Sort
Description of Change
I've added an implementation of iterative quick sort. It uses the stack instead of recursion.
Checklist
- [x] Added description of change
- [x] Added file name matches File name guidelines
- [x] Added tests and example, test must pass
- [x] Added documentation so that the program is self-explanatory and educational - Doxygen guidelines
- [x] Relevant documentation/comments is changed or added
- [x] PR title follows semantic commit guidelines
- [x] Search previous suggestions before making a new one, as yours may be a duplicate.
- [x] I acknowledge that all my contributions will be made under the project's license.
Notes:
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.
can someone check this pr out? @realstealthninja
Tests failing! The issue is the functions youre using inside test is not the namespaced one
Fix is prefixing the function calls with
sorting::function_name()
Oh I forgot, I'll fix it later today.