Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/keithrfung/allocationmethods
Towson University : COSC 519 - Group Project
https://github.com/keithrfung/allocationmethods
Last synced: about 1 month ago
JSON representation
Towson University : COSC 519 - Group Project
- Host: GitHub
- URL: https://github.com/keithrfung/allocationmethods
- Owner: keithrfung
- Created: 2014-12-28T20:25:18.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2015-02-07T16:56:11.000Z (almost 10 years ago)
- Last Synced: 2024-10-15T07:58:16.205Z (3 months ago)
- Language: C#
- Homepage:
- Size: 387 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# AllocationMethods
Graduate group project for COSC 519 class at Towson University, MD. Project was to create visual simulation of disk file allocation methods. The project utilizes a MVVM structure facilitated by the MVVM Toolkit(http://www.mvvmlight.net/) and a metro theme which takes advantage of the Mahapps Metro Theme (http://mahapps.com/)## Contiguous Method ##
Stores will only fill blocks where the file can be contained in contiguous blocks. Segmentation is obvious after running for longer periods of time.
![Alt text](Screenshot1.png?raw=true "Contiguous Method")## Linked Method ##
Files can be linked across blocks. The mouseover in the disk is helpful to identify the next linked blocks. The file with an arrow indicates the block is linked.
![Alt text](Screenshot2.png?raw=true "Linked Method")## Indexed Method##
A single index block for the file contains all the links. Mouse over blocks marked with the bookmark to see a list the file's indexed blocks.
![Alt text](Screenshot3.png?raw=true "Indexed Method")