Submission 68a88f25...
/**
* This file is part of the 1st Solidity Gas Golfing Contest.
*
* This work is licensed under Creative Commons Attribution ShareAlike 3.0.
* https://creativecommons.org/licenses/by-sa/3.0/
*
* Author: Greg Hysen (@hysz)
* Date: June, 2018
*/
pragma solidity 0.4.24;
contract Sort {
/**
* @dev Sorts a list of integers in ascending order.
*
* The input list may be of any length.
*
* @param input The list of integers to sort.
* @return The sorted list.
*/
function sort(uint[] input)
public
pure
returns(uint[])
{
if(input.length == 0) return input;
quickSort(input, 0, input.length - 1);
return input;
}
function quickSort(
uint[] input,
uint lo,
uint hi
)
internal
pure
{
uint iElem;
uint jElem;
if(hi - lo < 11) {
// If within threshold, run insertion sort instead.
i = lo + 1;
while(i <= hi) {
j = i;
jElem=input[j];
while(j > lo && (iElem=input[j-1]) > jElem) {
input[j--] = iElem;
}
if(j != i++) input[j] = jElem;
}
return;
}
// Pivot (Median of 3)
i = uint((hi+lo)/2); // pivot index
uint pivot = input[i];
if((iElem=input[lo]) > pivot) {
(input[lo], input[i]) = (pivot, iElem);
pivot = iElem;
}
if((iElem=input[lo]) > (jElem=input[hi])) (input[lo], input[hi]) = (jElem, iElem);
if((iElem=input[i]) > (jElem=input[hi])) {
(input[i], input[hi]) = (jElem, iElem);
pivot = jElem;
}
// Hoare pivot algorithm
uint i = lo - 1;
uint j = hi + 1;
while(true) {
while((iElem=input[uint(++i)]) < pivot) {}
while((jElem=input[uint(--j)]) > pivot) {}
if(i >= j) break;
if(jElem != iElem) (input[uint(i)], input[uint(j)]) = (jElem, iElem);
}
// Sort
if(lo < j) quickSort(input, lo, j);
j++;
if(j < hi) quickSort(input, j, hi);
}
}