Are lists contiguous in memory?

Fairly simple question. Are the elements in list placed in sequential memory addresses like vectors, or are they not placed in order in memory and can only tell position thanks to pointers pointing to the next position?

Thanks in advance!
http://www.cplusplus.com/reference/list/list/
... lists can store each of the elements they contain in different and unrelated storage locations ...
std::vector, however, does store elements contiguously in memory. It's also almost always preferred over std::list (which is only useful in special cases)
Topic archived. No new replies allowed.