← Back to the index page

Variety of linked lists

A linked list is a classical data structure that can be used as data storage for different algorithms and efficient memory management. Usually, for the tasks that Lua programming language solves, linked lists are rarely used. In most cases stack and queue are enough, but for some tasks linked lists are irreplaceable.

Here are some variations of linked lists with links to implementation in Lua.

Advanced

There are much more advanced variations of linked lists, which are rarely used and almost never in interpreted languages like Lua. These are meant for working and optimizing work with memory on a lower level. Maybe someday I will also implement them as examples for Lua language.

Feedback

For feedback, please check the contacts section. Before writing, please specify where you came from and who you are. Sometimes spammers go insane. Thank you in advance for your understanding.

← Back to the index page