An open API service indexing awesome lists of open source software.

https://github.com/aemulare/lab-sequence

CSC326 Information structures course
https://github.com/aemulare/lab-sequence

c-plus-plus college-project console-application information-structures simulation

Last synced: 10 months ago
JSON representation

CSC326 Information structures course

Awesome Lists containing this project

README

          

# Sequence

Model of a sequence of items (int, float, double, char, strings) and operations with them.

## Project Assignment

> Implement a container class called a sequence. The items contained in a sequence are arranged one after the other, unlike a bag, which implies an unorganized arrangement of items.
> The class should include member functions to allow a program to step through a sequence
> one item at a time, as well as member functions to control exactly where items are inserted
> and removed in the sequence.
> The class should include a data member that keeps track of the “current item” in the sequence
> and member functions to set the current item to the beginning of the sequence
> and to advance the current item.

## Format

Console application

## Screen shots

![alt tag](https://raw.githubusercontent.com/aemulare/Lab-Sequence/master/Sequence-screen-shot.png)

## Author

* [Maria Romanova](https://github.com/aemulare)

## Project repository link

https://github.com/aemulare/Lab-Sequence