We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
list<char> LL; auto t = LL.begin(); LL.erase(t); // 이 부분과 같이 삭제를 진행하면 안됨. t는 여전히 삭제된 부분을 가리키고 있음 t = LL.erase(t); // 이 부분과 같이 삭제 후 t를 갱신하여야 합니다.
list<char> LL; auto t = LL.end(); LL.insert(t, 0); // t의 **앞에** 0을 삽입하겠다는 의미입니다.
The text was updated successfully, but these errors were encountered:
Settpark
No branches or pull requests
The text was updated successfully, but these errors were encountered: