F# implementation of sorting algorithms
In this section, we will review a few common sorting algorithms, and their functional style implementation in F#. Quick sort, bubble sort, and merge sort are fairly easy to understand sorting algorithms and are commonly taught in the introduction to algorithm courses. The purpose of using them here, is to reinforce the idea of functional constructs discussed earlier, and show their usage in a practical setting.