Skip to content

learn-something-new/data-structures

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

48 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

#Data Structures

logo

A collection of C++ code for me to re-learn data structures.

Table of Contents

A fixed size structure with push and pop methods, following the FIFO rule (first in, last out).

A fixed size structure with add and del methods, following the FILO rule (first in, first out).

A non-fixed (only restricted by available memory) data structure with add and del methods. Each item or 'node' in the list contains a pointer to the next item in the list. Their is no first or last out rule that applies to this list as it allows the removal of any item in any order.

A non-fixed (only restricted by available memory) data structure with push and pop methods. Each item or 'node' in the list contains a pointer to the next item in the list. This structure follows the FILO rule (first in, last out).

A non-fixed (only restricted by available memory) data structure with add and del methods. Each item or 'node' in the list contains a pointer to the next item in the list as well the previous. Their is no first or last out rule that applies to this list as it allows the removal of any item in any order.

A non-fixed (only restricted by available memory) data structure with add and del methods. Each item or 'node' in the list contains a pointer to the next item in the list. This structure follows the FIFO rule (first in, first out).

##License This tool is protected by the GNU General Public License v2.

Copyright Jeffrey Hann 2014

About

A collection of C++ code for me to re-learn data structures.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published