Skip to content

A linked list implementation on a static array in Rust. Intended for use in environments without dynamic memory allocation.

License

Notifications You must be signed in to change notification settings

arkap/rs-static-linkedlist

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Static-LinkedList

Linked List implementation that uses a static array as backing memory for an arbitrary number of linked lists.

Usage

To create a linked list you first have to create a StaticLinkedListBackingArray passing to it an array of u8. Then, you can create any number of lists backed by that array using new_list(). Note that creating arrays of zero-sized types is not possible.

Since the created lists share the backing arrays underlying memory the total number of entries across all lists cannot exceed the array's capacity.

The list needs some memory in the buffer for its metadata (pointers to the next element). If the buffer used to create a StaticLinkedListBackingArray is not big enough to hold n entries of data plus list metadata, the array will only have a capacity of n - 1 entries. The remaining bytes will be wasted. The capacity_for() function was designed to calculate the exact amount of bytes necessary for holding n entries of data.

About

A linked list implementation on a static array in Rust. Intended for use in environments without dynamic memory allocation.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages