- std :: list โ LinkedList?
- std :: vector โ List?
std :: list is supported by an array, each deletion will have a copy of memory, the same behavior as a C # list. while C # LinkedList is supported by a node list, the same as std :: vector.
therefore I believe below correctly.
- std :: list โ List
- std :: vector โ LinkedList
source share