////////////////////////////////////////////////////////////// // util.h #define swap(type, a, b) { type t; t=a; a=b; b=t; }