00001 if (i > j) { 00002 /* swap values of i and j */ 00003 int temp = i; 00004 i = j; 00005 j = temp; 00006 }