복습이 필요한 알고 팁
vector<int> 에서 .erase()쓰기
헐랭미
2020. 8. 30. 18:39
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | #include <iostream> #include <string> #include <vector> #include <algorithm> using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); vector<int> arr = { 1,67,23,67,2,3,1,6,8,678,567 }; // 3번째 지운다. arr.erase(arr.begin() + 3); } | cs |