class Pair { T first; T second; } public static void swap(Pair p) { T temp = p.first; p.first = p.second; p.second = temp; }