Quicksort implementation using Linked List
About QuickSort Wikipedia QuickSort definition. General idea revolves around partitioning a list where values less than pivot go into left list while greater than go into right list. Pivot here is the first item of the passed in list. We apply this recursively to the sublists them merge left+pivot+right. CPP Code First of all not …