// filename: GrayString.cpp // Naive recursive implementation of the Gray code using strings #include #include using namespace std; string * Mirror(string * s, int nb) { string * res; res=new string[nb]; int i; for (i=0; i