itcs3146-project/baseAlgorithm.java
2012-10-30 20:26:34 -04:00

17 lines
297 B
Java

public class baseAlgorithm{
int[] memoryBlock;
void baseAlgorithm(int memorySize){
/* Constructor needed for each algorithm */
memoryBlock = new int[memorySize];
}
void allocate(){
/* This method to be overloaded by each algorithm */
}
void deallocate(){
}
}