I'm thinking of creating software generating all possible sorting algorithms by specified requirements, and best fitting algorithm. What real-life requirements would you specify for that software? How would you specify them.
My suggestions are:
getSortingAlgorithm(int memorySize, int timeConstraintInMillisec);
//getSortingAlgorithm("O(n)", "O(n*log(n))");
getSortingAlgorithm(AssymptomaticConstaint memoryConstraint, AssymptomaticConstaint timeConstraint);
Any other ideas of hardening, easing these constraints?