We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 78c12a3 commit 9a400d6Copy full SHA for 9a400d6
README.md
@@ -23,3 +23,11 @@ The following algorithms were implemented:
23
- Quick
24
- Radix
25
- Shell
26
+
27
+The program shows the execution times of each algorithm, it is possible to create a random vector of integers and test
28
+it with all the algorithms for comparison purposes. It is nice to note that the difference in execution times of each
29
+algorithm grows as you use larger vectors. Small vectors are ordered quickly by any of these algorithms with a small
30
+time difference between them, but by increasing the vector sizes, it is seen that the more advanced algorithms like
31
+Quick, Merge, Bucket, Heap and Shell go absurdly better than the others.
32
33
0 commit comments