Talk:Unrolled linked list

From Wikipedia, the free encyclopedia

std::deque. prefer over std::list and std::vector. unfortunately noone does. sad.

Actually, std::deque is typically implemented using a variant of the dynamic array where active elements are placed in the middle of the array. There are implementations of std::list and std::deque based on unrolled linked lists, though. Deco 00:59, 11 September 2006 (UTC)