-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This modifies all orders to no longer be ALists. Also moves them to be shared_ptr rather than using raw pointers with new/delete. In most cases, I chose to use std::vector for the list of orders but in some (two) cases I chose std::list since there was a need to insert at the head. Choosing vector over list is preferred in general as it has better speed, but it makes inserting at the head harder.
- Loading branch information
Showing
11 changed files
with
575 additions
and
800 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.