Created by corning on 2017/12/19.
| 2 | * Created by corning on 2017/12/19. |
| 3 | */ |
| 4 | public interface IArraySort { |
| 5 | /** |
| 6 | * 对数组进行排序,并返回排序后的数组 |
| 7 | * |
| 8 | * @param sourceArray |
| 9 | * @return |
| 10 | * @throws Exception |
| 11 | */ |
| 12 | int[] sort(int[] sourceArray) throws Exception; |
| 13 | |
| 14 | } |
no outgoing calls
no test coverage detected