using namespace std; void main() { set<int> s1; //空set集合 set<int>::iterator it; int a[]= {1,2,3,4,5}; set<int> s2 (a,a+5); //利用指针对象 ...
確定! 回上一頁