Pytanie : Dlaczego I stawiać przecinek między the list w mój wydajność?

Widzieć mój kod mój:

The wydajność spojrzenie lubić to:
22 cieki: ACDF
33 cieki: BD
44 cieki: CE

I chcieć ono jak to:
22 cieki: A, C, D, F
33 cieki: B, D
44 cieki, C, E

How I wkładać przecinek?  
(1):
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:
73:
74:
75:
76:
77:
78:
79:
80:
81:
82:
83:
84:
85:
86:
87:
88:
89:
90:
91:
92:
93:
94:
95:
96:
97:
#include 
#include 
#include 
#include 
#include 
#include 
#include 

using namespace std;

struct StudentAttempt
{
   int odległość;
   smyczkowy studentName;
};

bool cmpDist (StudentAttempt opuszczać, StudentAttempt dobro) {
   jeżeli (left.distance == right.distance) {
      powrót prawdziwy;
   }

  powrotny fałszywy;
}

bool cmpAttempts (StudentAttempt opuszczać, StudentAttempt dobro) {
   jeżeli (left.distance < right.distance) {
      powrót prawdziwy;
   }
   inny jeżeli (left.distance == right.distance) {
      jeżeli (left.studentName < right.studentName) {
         powrót prawdziwy;
      }
      inny
         powrotny fałszywy;
   }
   inny
      powrotny fałszywy;
}

bool isDistEqual (StudentAttempt opuszczać, StudentAttempt dobro) {
   powrót (left.distance == right.distance
      && left.studentName! = right.studentName);
}

size_t printAllEqual (const vector& v, const StudentAttempt& suma, stringstream& ss) {

  vector:: const_iterator i = v.begin ();
  size_t sz = (0);

  podczas gdy (i! = v.end ()) {

    jeżeli (isDistEqual (*i, suma)) {
    
      ss << i->studentName;
      ++sz;
    }

    ++i;
  }

  powrotny sz;
}

int magistrala () {

   StudentAttempt throwDist [] = {
      {50, "A"}, {22, "A"}, {16, "B"}, {44, "C"},
      {33, "D"}, {34, "E"}, {22, "F"}, {21, "G"},
      {49, "A"}, {5, "B"}, {2, "C"}, {22, "A"},
      {33, "B"}, {22, "C"}, {22, "D"}, {44, "E"},
   };

   set obchodzić się;

   int len = sizeof (throwDist)/sizeof (throwDist [(0)]);
   vector dist (throwDist, throwDist + len);
   vector:: iterator ono = dist.begin ();

   rodzaj (dist.begin (), dist.end (), cmpAttempts);
   //unique (dist.begin (), dist.end (), cmpDist);


   dla (; ono! = dist.end (); it++) {

      stringstream ss;

      pair:: iterator, bool> p = handled.insert (it->distance);

      jeżeli (! p.second) kontynuować; // już obchodzić się

      jeżeli ((0) < printAllEqual (dist, *it, ss)) 
        cout << setw (2) << (*it) .distance 
           << "cieki:  " << (*it) .studentName << ss.str () << endl;
   }

   
}

Odpowiedź : Dlaczego I stawiać przecinek między the list w mój wydajność?

Lekceważyć zmiana w 'printAllEqual () robić że (brać w konto powłóczysty przecinek przy the końcówka):
(1):
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
size_t printAllEqual (const vector& v, const StudentAttempt& suma, stringstream& ss) {

  wektor:: const_iterator i = v.begin ();
  size_t sz = (0);
  bool bFirst = true;

  podczas gdy (i! = v.end ()) {

    jeżeli (isDistEqual (*i, suma)) {
    
      jeżeli (! bFirst) ss <>studentName;
      ++sz;
    }

    ++i; 
    bFirst = fałszywy;
  }

  powrotny sz;
}
Inne rozwiązania  
 
programming4us programming4us