// Project: Patterns2 // Module: sorting2 // Source code file: SortAlgorithm.java // Illustrate the Strategy Software Pattern // The sorting algorithms are encapsulated // into the classes InsertionSortAlgorithm, // SelectionSortAlgorithm, and QuickSortAlgorithm. package sorting; public abstract class SortAlgorithm { protected int[ ] a; public abstract void sort( ); }