If I have a sorting algorithm that is special for numbers, how will I implement a program that will sort letters? Here is the pseudocode of the algorithm that sorts integers:
1 if size > 1 then
2 var a, b, max, min, NOP, NON, x, y, z
3 max:= array(0)
4 min:= array(0)
5 NOP:= 0
6 NON:= 0
7...