Currently we have two separate linked list implementations:
clist/list: our native list implememations in core implementing singly-linked linear (list) and circular lists (clist).utlist: imported linked-list implementation in sys implementing singly-linked linear lists (LL_ and doubly-linked linear (DL_) and circular lists (CDL_).Both implementations have their respective benefits and drawbacks:
| Implementation | Benefits | Drawbacks |
|---|---|---|
| core |
|
|
| utlist |
|
|