⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 sortable.java

📁 Please read your package and describe it at least 40 bytes. System will automatically delete the di
💻 JAVA
字号:
/* * (c) COPYRIGHT 1999 World Wide Web Consortium * (Massachusetts Institute of Technology, Institut National de Recherche *  en Informatique et en Automatique, Keio University). * All Rights Reserved. http://www.w3.org/Consortium/Legal/ * * $Id: Sortable.java,v 1.2 2008/02/26 19:28:25 msdemlei Exp $ */// see Comparator.java for why this is here/** * This interface is only to sort an array with an abstract algorithm. * * @version $Revision: 1.2 $ * @author  Philippe Le H'egaret */public interface Sortable {    /**     * The sort function.     *     * @param objs the array with all objects     * @param start the start offset in the array     * @param end the end offset in the array     * @param comp The comparaison function between objects     */        public void sort(Object[] objs, int start, int end, Comparator comp);}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -