Skip to content

Basic data structures implemented in C++ to be used as teaching aids.

License

Notifications You must be signed in to change notification settings

wwu-cs/sample-data-structures

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Sample Data Structures

As I teach data structure, I find that I am constantly looking for good examples. Simple implementations that use standard conventions and keep to a simple interface. Our goal is to create basic data structures using simple interfaces with alternate implementations. The purpose is to use these as teaching aids. Any homework assignments can use these as starting points to build extra or more complicated solutions.

Data Structures and Implementations

  • List
    • Array-based
    • Dynamic-array-based
    • Singly-linked-list
    • Doubly-linked-list
    • Circular-linked-list
  • Stack
    • Array-based
    • Singly-linked-list
  • Quuee
    • Array-based
    • Singly-linked-list

About

Basic data structures implemented in C++ to be used as teaching aids.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published