A utility function to swap to integers
| 267 | |
| 268 | // A utility function to swap to integers |
| 269 | static inline void swap (int *a, int *b) |
| 270 | { |
| 271 | int temp = *a; |
| 272 | *a = *b; |
| 273 | *b = temp; |
| 274 | } |
| 275 | |
| 276 | // A function to generate a random permutation of arr[] |
| 277 | static void randomize ( int arr[], int n ) |