v/vlib/datatypes
Daniel Däschle 54bbc00493
fmt: remove space in front of ? and ! (#14366)
2022-05-13 10:10:39 +02:00
..
fsm fmt: remove space in front of ? and ! (#14366) 2022-05-13 10:10:39 +02:00
README.md docs: cleanup (#14327) 2022-05-08 14:03:58 +02:00
bstree.v datatypes: fix bst child access, when .root is 0 (#14080) 2022-04-21 10:34:34 +02:00
bstree_test.v datatypes: fix bst child access, when .root is 0 (#14080) 2022-04-21 10:34:34 +02:00
doubly_linked_list.v checker: check generic struct init without type parameter (#13404) 2022-02-09 14:06:45 +02:00
doubly_linked_list_test.v fmt: remove space in front of ? and ! (#14366) 2022-05-13 10:10:39 +02:00
heap.v vlib: rename `adt` to `datatypes` 2021-12-26 16:01:36 +02:00
heap_test.v fmt: remove space in front of ? and ! (#14366) 2022-05-13 10:10:39 +02:00
linked_list.v checker: check generic struct init without type parameter (#13404) 2022-02-09 14:06:45 +02:00
linked_list_test.v fmt: remove space in front of ? and ! (#14366) 2022-05-13 10:10:39 +02:00
queue.v datatypes: add an index method on LinkedList and Queue (#13185) 2022-01-16 19:11:10 +02:00
queue_test.v fmt: remove space in front of ? and ! (#14366) 2022-05-13 10:10:39 +02:00
stack.v vlib: rename `adt` to `datatypes` 2021-12-26 16:01:36 +02:00
stack_test.v fmt: remove space in front of ? and ! (#14366) 2022-05-13 10:10:39 +02:00

README.md

datatypes

This module provides implementations of less frequently used, but still common data types.

V's builtin module is imported implicitly, and has implementations for arrays, maps and strings. These are good for many applications, but there are a plethora of other useful data structures/containers, like linked lists, priority queues, tries, etc, that allow for algorithms with different time complexities, which may be more suitable for your specific application.

It is implemented using generics, that you have to specialise for the type of your actual elements. For example:

import datatypes

mut stack := datatypes.Stack<int>{}
stack.push(1)
println(stack)

Currently Implemented Datatypes:

  • Linked list
  • Doubly linked list
  • Stack (LIFO)
  • Queue (FIFO)
  • Min heap (priority queue)
  • Set
  • ...