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
- Host: GitHub
- URL: https://github.com/aemulare/lab-sequence
- Owner: aemulare
- Created: 2017-04-13T18:05:30.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-04-14T19:57:47.000Z (about 9 years ago)
- Last Synced: 2025-02-16T09:14:21.379Z (over 1 year ago)
- Topics: c-plus-plus, college-project, console-application, information-structures, simulation
- Language: C++
- Homepage:
- Size: 10.6 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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

## Author
* [Maria Romanova](https://github.com/aemulare)
## Project repository link
https://github.com/aemulare/Lab-Sequence