# algorithm-study **Repository Path**: liudingding/algorithm-study ## Basic Information - **Project Name**: algorithm-study - **Description**: :rocket:算法学习 - **Primary Language**: Java - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-06-14 - **Last Updated**: 2025-03-30 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README > 这里用来记录自己的算法学习 卡号:handbaverconffor@mail.com 密码----邮箱密码:WKcG0KD23Uo8----WKcG0KD23Uo8 * 将数组打印:Arrays.toString(char[]) * 整形转字符串:String.valueOf(Integer) * 将数组排序:Arrays.sort(int[]) * 字符串截取:public String substring(int beginIndex) beginIndex -- 起始索引(包括), 索引从 0 开始       public String substring(int beginIndex, int endIndex) endIndex -- 结束索引(不包括)。