#include #include #include "book.h" #include "permute.h" #define COUNT 100 typedef int Elem; int main(int argc, char** argv) { Elem* A; // The array pointer Elem* B; // Second array int n; int i, j; Assert(argc == 2, "Usage: binsimp "); n = atoi(argv[1]); A = new Elem[n]; B = new Elem[n]; Randomize(); for (i=0; i