v/vlib/adt
Hunam 54a6973548
adt: add linked list (#12937)
2021-12-23 18:23:04 +02:00
..
README.md adt: add linked list (#12937) 2021-12-23 18:23:04 +02:00
linked_list.v adt: add linked list (#12937) 2021-12-23 18:23:04 +02:00
linked_list_test.v adt: add linked list (#12937) 2021-12-23 18:23:04 +02:00
stack.v
stack_test.v

README.md

adt

A library providing common ADTs (Abstract Data Type) implementations which have proved useful in a great variety of applications.

implementations

  • Stack (LIFO)
  • Linked list
  • ...