Good afternoon, I have this question: I define my data type
typedef struct { string name; string avtor; string place; /* и т.д. */ } librery; Create a list
list< librery> bibl; I fill it with values, I need to find an element (or all elements) in the list, suppose by the name field, and delete them. Tell me, please, how to do it.