Last active
April 27, 2018 15:11
-
-
Save deque-blog/8b14a89beda6779b07ac5783c630e0d9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// O(n) complexity | |
std::advance(linkedList.begin(), n); | |
// O(1) complexity (taking advantage of random access iterator) | |
std::advance(vector.begin(), n); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment