https://github.com/rynanda/job-collection-scheduler
Using linear data structures and algorithms and developing reusable abstract data types to store and schedule a collection of computing jobs.
https://github.com/rynanda/job-collection-scheduler
abstract-data-types algorithm-analysis algorithms csharp linear-data-structures selection-sort
Last synced: 3 months ago
JSON representation
Using linear data structures and algorithms and developing reusable abstract data types to store and schedule a collection of computing jobs.
- Host: GitHub
- URL: https://github.com/rynanda/job-collection-scheduler
- Owner: rynanda
- Created: 2023-09-13T10:16:20.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-09-13T10:22:31.000Z (almost 2 years ago)
- Last Synced: 2024-01-29T11:11:10.490Z (over 1 year ago)
- Topics: abstract-data-types, algorithm-analysis, algorithms, csharp, linear-data-structures, selection-sort
- Language: C#
- Homepage:
- Size: 1010 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Job Collection Scheduler
Using linear data structures and algorithms and developing reusable abstract data types (ADTs) to store and schedule a collection of computing jobs. Implementing linear data structure-based algorithm design and analysis techniques, making use of ADTs to model computing jobs in the operating system of a computer, storing and manipulating a collection of said computing jobs, as well as scheduling and managing the execution of computing jobs based on 1. First-Come, First-Served scheduling, 2. Shortest Job First scheduling, and 3. Priority scheduling. Selection sort algorithm was used.