Skip to content

Latest commit

 

History

History

linked-list

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

Generic-based Linked List

With the introduction of generics in Go 1.18, we can now implement generic-based collection like stack, linked-list, queue, and any custom collection more easily. Here's an example of a linked list implemented in Go generics.

Reference