E.g.
Intput, T: array of n elements, m: number of distinct elements.
for i in 1..m for j in 1..n if( T[j] == i ) print T[j];
E.g.
Intput, T: array of n elements, m: number of distinct elements.
This is O(n * m) which is O(n) since m is a constant.