/* ist in namespace std schon enthalten: template void swap (T& a, T&b) { T t = a; a = b; b = t; } */ template void bubblesort (C& a) { for (int i=a.maxIndex(); i>=a.minIndex(); i=i-1) for (int j=a.minIndex(); j