1. the advantages of intrusive container
(1) Intrusive containers don‘t allocate memory dynamically. A call to push_back() dosen‘t lead to a dynamic allocation with new. This is one reason why intrusive containers can improve performance.
原文:https://www.cnblogs.com/sssblog/p/11025092.html