Don Page

I enjoy growing software and experiencing life.

Trolley Problem Solved

Problem: Let’s say you see a trolley headed towards a track with 5 people tied on the tracks. You have […]

Merge Sort Example in C++

A merge sort is a O(n log n) sorting algorithm. I show in this example how to implement a merge sort in c++ using recursion. This algorithm is a divide & conquer based algorithm.