xiluoc un pc pour les unirs .... | Code :
- #include <iostream>
- #include <cstdlib>
- #include <vector>
- #include <algorithm>
- using namespace std;
- void appendBitCode(int n, int* table, int max, vector<string>& stock) {
- int i;
- string temp="";
- const double y = 10;
-
- //bitstring (graycode)
- for (i=1; i<=max ;++i){
- temp+= char(table[i])+48;
- }
- stock.push_back(temp);
- }
- void flip(int n, int* table, int max, vector<string>& stock) {
- appendBitCode(n, table, max, stock);
- //flip point
- table[n] = 1 - table[n];
- }
- //Binary Reflected Gray Code
- void BRGC (int n, int* table, int max, vector<string>& stock) {
- if (n > 0) {
- BRGC(n-1, table, max, stock);
- flip(n, table, max, stock);
- BRGC(n-1, table, max, stock);
- }
- }
- int main() {
- while (true) {
- vector<string> stock;
- int n; cin >> n;
- int* table = new int[n];
- //initialise the array to 0
- for (int i=1; i<=n ;++i) table[i] = 0;
- BRGC(n, table, n, stock);
- appendBitCode(n, table, n, stock);
- sort ( stock.rbegin (), stock.rend ());
- for (int i=0; i< stock.size(); i++) {
- cout << "{ ";
- for (int j=0; j < n; j++) {
- if (stock[i][j]=='1') cout << j+1 << " ";
- }
- cout << "}";
- cout << endl;
- }
- delete table;
- stock.clear();
- }
- return 0;
- }
|
je me suis inspire de morceau de code existant, mais pout suivre lordre demande j utilise un vecteur qui contient les diffrentes possibilite pour n (0000 0001 ect.), avec un sort et c est bon
|