|
@@ -0,0 +1,94 @@
|
|
|
+#include <iostream>
|
|
|
+#include <algorithm>
|
|
|
+#include <vector>
|
|
|
+#include <ctime>
|
|
|
+#include <cstdlib>
|
|
|
+#include <set>
|
|
|
+
|
|
|
+using namespace std;
|
|
|
+
|
|
|
+enum Color {CARREAU, COEUR, PIQUE, TREFLE};
|
|
|
+enum Rank {AS = 1, VALET = 11, DAME, ROI};
|
|
|
+
|
|
|
+struct Card
|
|
|
+{
|
|
|
+ Color c;
|
|
|
+ int r;
|
|
|
+};
|
|
|
+
|
|
|
+bool operator<(const Card &a, const Card &b)
|
|
|
+{
|
|
|
+ if (a.r < b.r)
|
|
|
+ return true;
|
|
|
+ else if (a.r == b.r)
|
|
|
+ return a.c < b.c;
|
|
|
+ else
|
|
|
+ return false;
|
|
|
+}
|
|
|
+
|
|
|
+void disp(const vector<Card> &tas)
|
|
|
+{
|
|
|
+ for (auto it(tas.begin()); it != tas.end(); it++) {
|
|
|
+ cout << "C:" << it->c <<"; R:"<< it->r << endl;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+void disp(const set<Card> &jeu)
|
|
|
+{
|
|
|
+ for (auto it(jeu.begin()); it != jeu.end(); it++) {
|
|
|
+ cout << "C:" << it->c <<"; R:"<< it->r << endl;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+void piocher(vector<Card> &tas, set<Card> &jeu)
|
|
|
+{
|
|
|
+ jeu.insert(tas.back());
|
|
|
+ tas.pop_back();
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+void jouer(vector<Card> &pioche, vector<Card> &pile, set<Card> &jeu)
|
|
|
+{
|
|
|
+
|
|
|
+ Card instCard;
|
|
|
+ instCard.c = pile.back();
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+}
|
|
|
+
|
|
|
+int main(int argc, char const *argv[])
|
|
|
+{
|
|
|
+
|
|
|
+ const int nbPlayer(2);
|
|
|
+ int curPlayer(0);
|
|
|
+ Card instCard;
|
|
|
+
|
|
|
+ vector<Card> pioche;
|
|
|
+ vector<Card> pile;
|
|
|
+
|
|
|
+ for (int c(0); c < 4; c++)
|
|
|
+ for (int r(AS); r < 14; r++) {
|
|
|
+ instCard.c = (Color)c;
|
|
|
+ instCard.r = r;
|
|
|
+ pioche.push_back(instCard);
|
|
|
+ }
|
|
|
+
|
|
|
+ set<Card> jeu[nbPlayer];
|
|
|
+
|
|
|
+
|
|
|
+ random_shuffle(pioche.begin(), pioche.end());
|
|
|
+
|
|
|
+ for (int k(0); k < nbPlayer; k++) {
|
|
|
+ for (int c(0); c < 3; c++) {
|
|
|
+ piocher(pioche, jeu[k]);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ return 0;
|
|
|
+}
|