Skip to content

I present the implementation of several data structures.

Notifications You must be signed in to change notification settings

Ilya-Belyanov/Structures

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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;

About

I present the implementation of several data structures.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published