Stars
0
Forks
0
Watchers
0
Open Issues
0
Overall repository health assessment
No package.json found
This might not be a Node.js project
16
commits
in quick_sort, added missing semicolon after i++, added missing size argument to print calls.
370dec1View on GitHubquick_sort compares the i position and pivot. if right is greater switches i and k, increments i. if not increments k and swaps i and pivot.
2eb49d6View on GitHubadded best, average and worst case performance notation for O-2
126c8fdView on GitHubin selection_sort, added conditional check before swap and print. k = 1+2, i++.
3b76bd8View on GitHubin insertion_sort, added missing semicolons at the end of line 18, 28. renamed 5-print_list.c
2f855bbView on GitHubin insertion_sort, added list pointer current. changed if else in while loop to a while loop, using temp to check values backward until temp = list pointer. then current = current->next.
4634838View on GitHubin insertion sort, added documentation, null check for empty list, while loop with if else value comparison and swap.
3ec259bView on GitHubin print_array.c changed spaces to tabs. In 0-O corrected 0s to Os.
8f819b0View on GitHubin bubble_sort, added documentation. changed int i to size_t to compare against size.
f67b2a0View on GitHub