diff options
Diffstat (limited to 'src/03/04/README.md')
| -rw-r--r-- | src/03/04/README.md | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/03/04/README.md b/src/03/04/README.md new file mode 100644 index 0000000..0a95052 --- /dev/null +++ b/src/03/04/README.md @@ -0,0 +1,8 @@ +Given sequence 3, 1, 4, 1, 5, 9, 2, 6, 5, 3, 5, sort the sequence using the +following algorithms, and illustrate the details of the execution of the +algorithms: + +a. merge-sort algorithm. +b. quick-sort algorithm. + * Choose a partitioning strategy you like to pick a pivot element from the sequence. + * Analyze how different portioning strategies may impact on the performance of the sorting algorithm. |
