// FILE: ExchngT.h // Exchanges two type T values template void exchange (T& element1, T& element2) { T temp; temp = element1; element1 = element2; element2 = temp; }