auto to_delete = *it; auto tmp_it = chop_set.find(to_delete); while(tmp_it != chop_set.end()) { //note: erase will return next avilable it pointer it = chop_set.erase(tmp_it); tmp_it = chop_set.find(*tmp_it); }
intmain() { // empty set container set <int> gquiz1;
gquiz1.insert(40); gquiz1.insert(30); gquiz1.insert(60); gquiz1.insert(20); gquiz1.insert(50); gquiz1.insert(50); // only one 50 will be added to the set gquiz1.insert(10);
// printing set gquiz1 cout << "\nThe set gquiz1 is : "; for(auto x : gquiz1) cout << x << " "; cout << endl;
// assigning the elements from gquiz1 to gquiz2 set <int> gquiz2(gquiz1.begin(), gquiz1.end()); // printing set gquiz1 cout << "\nThe set gquiz2 is : "; for(auto x : gquiz2) cout << x << " "; cout << endl;
// remove all elements up to 30 in gquiz2 cout << "\ngquiz2 after removal of elements less than 30 : "; gquiz2.erase(gquiz2.begin(), gquiz2.find(30)); for(auto x : gquiz2) cout << x << " "; cout << endl;
// remove all elements with value 50 in gquiz2 int num; num = gquiz2.erase (50); cout << "\ngquiz2.erase(50) : "; cout << num << " removed \t" ; for(auto x : gquiz2) cout << x << " "; cout << endl;
//lower bound and upper bound for set gquiz1 cout << "gquiz1.lower_bound(40) : " << *gquiz1.lower_bound(40) << endl; cout << "gquiz1.upper_bound(40) : " << *gquiz1.upper_bound(40) << endl;
//lower bound and upper bound for set gquiz2 cout << "gquiz2.lower_bound(40) : " << *gquiz2.lower_bound(40) << endl; cout << "gquiz2.upper_bound(40) : " << *gquiz2.upper_bound(40) << endl;
return0;
} 程序输出: The set gquiz1 is : 102030405060
The set gquiz2 is : 102030405060
gquiz2 after removal of elements less than 30 : 30405060
Problem Description Small W is playing a summary game. Firstly, He takes N numbers. Secondly he takes out every pair of them and add this two numbers, thus he can get N(N - 1)/2 new numbers. Thirdly he deletes the repeated number of the new numbers. Finally he gets the sum of the left numbers. Now small W want you to tell him what is the final sum. Input Multi test cases, every case occupies two lines, the first line contain n, then second line contain n numbers a1, a2, ……an separated by exact one space. Process to the end of file. [Technical Specification] 2 <= n <= 100 -1000000000 <= ai <= 1000000000 Output For each case, output the final sum. Sample Input 4 1 2 3 4 2 5 5 Sample Output 25 10 Hint Firstly small W takes any pair of 1 2 3 4 and add them, he will get 3 4 5 5 6 7. Then he deletes the repeated numbers, he will get 3 4 5 6 7, Finally he gets the sum=3+4+5+6+7=25 代码: