Skip to content

Latest commit

 

History

History
21 lines (16 loc) · 603 Bytes

README.md

File metadata and controls

21 lines (16 loc) · 603 Bytes

Structures


Structures Line Adapter:

  1. List - doubly linked list, have pointers to back and front position.
  2. Vector - dinamic linear massive of elements.

Line Structures:

  1. Queue - based on any line adapter. Type LILO (Last In - Last Out). Examples: Queue q - default, based on List; Queue<int, Vector> q - based on Vector;

  2. Stack - based on any line adapter. Type LIFO (Last In - First Out). Examples: Stack s - default, based on List; Stack<int, Vector> s - based on Vector;