Transylvanian University Sapientia presented its new training course on sorting algorithms. It is worth noting the talent of the creators and high visibility benefits.
There is a video under the cut
')
PS I thought at first to write in " Habrayumor ", but as if there is nothing funny in the video - serious work has been done in the field of algorithms and the results are obvious. For a person who does not know these algorithms (a student, for example), in a few minutes of watching a video, everything becomes clear, much faster than, for example, from such an article or such code:
voidinsertionSort(int arr[], int length){ int i, j, key; for (i = 1; i < length; i++) { key = arr[i]; j = i - 1; while (j >= 0 && arr[j] > key) { arr[j + 1] = arr[j]; j--; } arr[j + 1] = key; } }