List in C++ - Some Useful Functions
Lists are sequence containers that allow non-contiguous memory allocation. As compared to vector, the List has slow traversal, but once a position has been found, insertion and deletion is quick. List Useful Functions: 1. emplace(position, value): This function is used to insert an element at the sp