
2 May
2005
2 May
'05
12:48 a.m.
"Olaf Krzikalla" <krzikalla@gmx.de> wrote in message news:d53hmo$dtq$1@sea.gmane.org... | Hi, | | I'm not sure, if I get all your points right. | | Thorsten Ottosen wrote: | > but if you're creating a linked-list on the "stack", then you need to store | > the list somewhere; | The list nodes aren't created on the 'stack', they are part of the objects. yes, like in struct Link { Link* prev, next; }; right? So if you say the library is about performance, then I assume Link's cannot be heap-allocated; so where are they allocated? I'm just trying to figure out what it is that makes your library faster in certain cituations :-) -Thorsten