Category "stdvector"

Deleting a pointer from a vector... Error: terminate called after throwing an instance of 'std::bad_alloc' what(): std::bad_alloc

I'm getting the error after I delete a pointer from the vector and try to delete a second one. I'm still new to pointers I created a base class of shapes and ha

Save integers from string to vector

I need to save integers from string to vector. Definition of number: each of strings substrings which consists entirely of digits, with a space before the first

Wrapper for std::vector that makes Structure of Arrays look like Array of Structures

I have a vector of a struct with 8 different fields (integers and pointers) that serves as a database for my program. Usually only a few of these fields are act