v/vlib/datatypes
Vincenzo Palazzo 17bba712bd
checker: ban unsafe pointer/fn comparison (#14462)
2022-05-20 18:30:16 +03:00
..
fsm
README.md
bstree.v checker: ban unsafe pointer/fn comparison (#14462) 2022-05-20 18:30:16 +03:00
bstree_test.v
doubly_linked_list.v checker: ban unsafe pointer/fn comparison (#14462) 2022-05-20 18:30:16 +03:00
doubly_linked_list_test.v
heap.v
heap_test.v
linked_list.v checker: ban unsafe pointer/fn comparison (#14462) 2022-05-20 18:30:16 +03:00
linked_list_test.v
queue.v
queue_test.v
stack.v
stack_test.v

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
  • ...