Basically, its loading XML data, but it has the following 3 properties that need to be executed
In both cases, I need to keep the data order.
It depends on your complexity requirements (or the expected data complexity), but I used it once multimap<Key, list<Value> >for some project.
multimap<Key, list<Value> >
I'm not a C ++ programmer, but it seems like a linked list of linked lists.
You can use a composite design template. This link contains some relevant information for this context.
No data structure will satisfy all of these properties. You will need to use inheritance and data mixing structures at runtime.
Source: https://habr.com/ru/post/1774886/More articles:Deleting the 11th row in RadGrid makes it empty - c #Problem installing PHPUnit on Windows using PEAR and without PEAR - phpunitDoes the ASP.NET website publish any additional security benefits? - securityC # Entity Framework: how to update record and change foreign key link? - c #Cycle counter in Java API - javaTemplates in C ++ - c ++What is the correct way to use partial view models in ASP.NET MVC2? - model-view-controllerSite Under Construction page for asp.net - asp.netWhat are the pros and cons of this class definition style? - c ++A non-OO PHP design pattern, the PHP pattern best suited to this situation - designAll Articles