vector<int> a; // 存 sort(a.begin(), a.end()); // 将所有值排序 a.erase(unique(a.begin(), a.end()), a.end()); // 去掉重复元素
tql
tql