Vraag : Hoe krijg ik van deze code aan mijn gewenste output?

Dit is Een academische oefening, maar geen daadwerkelijk probleem ik probeer op te lossen.  />A de bos

Please


From deze code ik de output wil tonen om als dit te kijken: />44 voeten 33 voeten E22 voeten D
gezien wij nu iterator het… hebben hoe ik mijn gewenste output krijg?
" codeBody "
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:
#include 
#include 
#include 
#include 
#include 

het gebruiken van namespace norm;

struct StudentAttempt
{
   int. afstand;
   koord studentName;
};

bool cmpAttempts (recht verlaten StudentAttempt, StudentAttempt) {
   als (left.distance < right.distance) {
      ware terugkeer;
   }
   als anders (left.distance == right.distance) {
      als (left.studentName < right.studentName) {
         ware terugkeer;
      }
      anders
         valse terugkeer;
   }
   anders
      valse terugkeer;
}

isDistEqual bool (recht verlaten StudentAttempt, StudentAttempt) {
   terugkeer (left.distance == right.distance
      && left.studentName! = right.studentName);
}

int. leiding () {

   throwDist van StudentAttempt [] = {
      {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“},
   };
   int. len = sizeof (throwDist)/sizeof (throwDist [0]);
   vector dist (throwDist, throwDist + len);
   vector:: iterator het = dist.begin ();

   soort (dist.begin (), dist.end (), cmpAttempts);

   voor (; het! = dist.end (); it++) {
      cout << setw (2) << (*it) .distance 
         << „voeten:  “ << (*it) .studentName << endl;
   }

   het = adjacent_find (dist.begin (), isDistEqual dist.end (),);
}

Antwoord : Hoe krijg ik van deze code aan mijn gewenste output?

O.K., volgende poging; o)

Dit keer zullen wij de afstanden elimineren die wij reeds hebben behandeld:
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  

het gebruiken van namespace norm;

struct StudentAttempt
{
   int. afstand;
   koord studentName;
};

bool cmpDist (recht verlaten StudentAttempt, StudentAttempt) {
   als (left.distance == right.distance) {
      ware terugkeer;
   }

  valse terugkeer;
}

bool cmpAttempts (recht verlaten StudentAttempt, StudentAttempt) {
   als (left.distance < right="">& v, const StudentAttempt& sa, stringstream& ss) {

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

  terwijl (I! = v.end ()) {

    als (isDistEqual (*i, sa)) {
    
      ss <>studentName;
      ++sz;
    }

    ++i;
  }

  terugkeer sz;
}

int. leiding () {

   throwDist van StudentAttempt [] = {
      {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“},
   };

   behandelde reeks;

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

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


   voor (; het! = dist.end (); it++) {

      stringstream ss;

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

      als (! p.second) ga verder; reeds behandeld //

      als (0  < printAllEqual="">
           
Andere oplossingen  
 
programming4us programming4us