In this project I am going to be exploring the impact that different sorting algorithms have on the thermals of Raspberry Pi Zero 2 W.
I ran a test run of the algorithms with a list of 50,000 numbers on my Mac, and measured how long it took in C and in Python.
Algorithm: Bubble Sort Language: C Time: 4.4s
Algorithm: Merge Sort Language: C Time: 0.006s
Algorithm: Bubble Sort Language: Python Time: 137.6s
Algorithm: Merge Sort Language: Python Time: 0.063s