Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Generic Linked List for Delphi 2009

I was looking in Generics.Collections and noticed there was no linked list. Sure they are simple to make, but I thought it was odd there was not one (or I just missed it). Are linked lists just outdated when compared to new modern data structures, or is there a need for a general generic linked list? Does anyone know of one?

like image 540
Jim McKeeth Avatar asked Dec 10 '22 20:12

Jim McKeeth


1 Answers

Do you know the DeHL?

I think the TLinkedList<T> from the DeHL.Collections.LinkedList.pas unit is exactly what you are looking for.

like image 55
ulrichb Avatar answered Jan 01 '23 23:01

ulrichb