An inefficient sorting algorithm I made up at 2 o'clock in the morning while playing with cards.
Give the algorithm a list of random values.
There are two lists: the base list (which includes the user's input values) and the memory list.
In the base list, the algo compares the two outermost values. Then, it slowly moves towards the centre, comparing every pair of values, adjacent to the one before. The algo stops whenever it has reached the centre value or there is nothing left to compare.
The algorithm takes the very last member of the base list and prepends it to the memory list. Then, the cycle continues, until all values of the base list are placed in the memory list. At this point, the order should be different between the memory and the beginning state of the base list.
The cycle is continued for the memory list. However, after reaching the centre, the base takes the leftmost member of the memory and appends that member to itself. This repeats until all values of the memory have switched on to the base list.
At the end, the base list should output the correct ascending order of the values.
I have no idea
Supposedly very well