8 lines
170 B
Java
8 lines
170 B
Java
package strategy;
|
|
|
|
/** Strategy interface — all sorting algorithms implement this */
|
|
public interface SortStrategy {
|
|
void sort(int[] data);
|
|
String getName();
|
|
}
|