提出问题
真实项目中,章节如何排序???
解决问题
下面是真实项目中的一个章节排序问题,希望以后碰到该问题的程序员,可以提供一个参考,希望刚刚开始学编程的同学,可以当作一个练习的例子等等。图片是思路,代码是实现。
[code]package com.hwy.test; import java.util.*; /** * 章节排序 * Created by Ay on 2016/7/9. */ public class ChapterSortTest { public static void main(String[] args) { /** 从数据库加载数据 **/ List<String> chapterList = getDataFromDB(); /** 章节list转化为map **/ Map<String,String> chapterMap = listChangeToMap(chapterList); /** 获得章节号 **/ List<String> chapterNum = getChapterNum(chapterMap); /** 章节号去除点 **/ Map<Integer,String> chapterNumNoDot = removeDot(chapterNum); /** 获取数字最大长度 **/ int maxLength = getChapterNumMaxLength(chapterNumNoDot.keySet()); /** 获取补0后的列表 **/ List<String> fillZeroChapterNum = fillZero(maxLength,chapterNumNoDot); /** 排序 默认是升序,刚好是我们需要的**/ Collections.sort(fillZeroChapterNum); /** 重组map对象**/ List<String> sortChapterList = getSortChapterMap(fillZeroChapterNum,chapterMap,chapterNumNoDot); /** 打印信息 **/ if(sortChapterList != null){ for(String key:sortChapterList){ System.out.println(key); } } } /** * 获得排序后的map * @param fillZeroChapterNum * @param chapterMap * @return */ public static List<String> getSortChapterMap(List<String> fillZeroChapterNum,Map<String,String> chapterMap,Map<Integer,String> chapterNotDot){ if(null == fillZeroChapterNum || fillZeroChapterNum.size() == 0) return null; if(null == chapterMap) return null; List<String> sortChapterList = new ArrayList<>(); for(String temp:fillZeroChapterNum){ sortChapterList.add(chapterNotDot.get(Integer.parseInt(temp.replace("0", ""))) + " " + chapterMap.get(chapterNotDot.get(Integer.parseInt(temp.replace("0", ""))))); } return sortChapterList; } /** * 补零操作 * @return */ public static List<String> fillZero(int maxLength,Map<Integer,String> chapterNumNoDot){ if(null == chapterNumNoDot || chapterNumNoDot.size() ==0) return null; List<String> fillZeroList = new ArrayList<>(); for(Integer key:chapterNumNoDot.keySet()){ fillZeroList.add(key + getNeedZero(maxLength - (key + "").length())); } return fillZeroList; } /** * 获得需要0的个数 * @param num * @return */ public static String getNeedZero(int num){ if(num <1) return ""; StringBuffer sb = new StringBuffer(); /** 拼凑需要的0 **/ for(int i=0;i<num;i++){ sb.append("0"); } return sb.toString(); } /** * 返回数组最大值 * @param a * @return */ public static int max(int[] a){ // 返回数组最大值 int x; int aa[]=new int[a.length]; System.arraycopy(a,0,aa,0,a.length); x=aa[0]; for(int i=1;i<aa.length;i++){ if(aa[i]>x){ x=aa[i]; } } return x; } /** * 获得章节号最大长度 * @param chapterNumNoDot * @return */ public static int getChapterNumMaxLength(Set<Integer> chapterNumNoDot){ if(null == chapterNumNoDot || chapterNumNoDot.size() == 0) return 0; Object[] chapterNumArr = chapterNumNoDot.toArray(); int[] chapterNum = new int[chapterNumArr.length]; for(int i=0;i<chapterNumArr.length;i++){ chapterNum[i] = chapterNumArr[i].toString().length(); } return max(chapterNum); } /** * 去除章节号中的点 * @param chapterNumList * @return */ public static Map<Integer,String> removeDot(List<String> chapterNumList){ if(null == chapterNumList || chapterNumList.size() == 0) return null; Map<Integer,String> rmDotChapterNumMap = new HashMap<>(); for(int i=0;i<chapterNumList.size();i++){ /** 把点替换成空 **/ rmDotChapterNumMap.put(Integer.parseInt(chapterNumList.get(i).replace(".","")),chapterNumList.get(i)); } return rmDotChapterNumMap; } /** * 获取章节号 * @param chapterMap * @return */ public static List<String> getChapterNum(Map<String,String> chapterMap){ if(null == chapterMap) return null; List<String> chapterNumList = new ArrayList<>(); for(String chapterNum:chapterMap.keySet()){ chapterNumList.add(chapterNum); } return chapterNumList; } /** * 把list转变为map * @param chapterList * @return */ public static Map<String,String> listChangeToMap(List<String> chapterList){ /** 存到map中 **/ Map<String,String> chapterMap = new HashMap<>(); if(null == chapterList || chapterList.size() == 0) return null; for(String chapter:chapterList){ chapterMap.put(chapter.split(" ")[0], chapter.split(" ")[1]); } return chapterMap; } /** * 从数据库获取数据 * @return */ public static List<String> getDataFromDB(){ List<String> chapterList = new ArrayList<>(); chapterList.add("1.3.1 华丽新设计"); chapterList.add("1.4 思想流派"); chapterList.add("3.1 短小"); chapterList.add("3.2 只做一件事"); chapterList.add("2.11 别伴可爱"); chapterList.add("4.4.12 注释掉的代码"); chapterList.add("1.1 要有代码"); chapterList.add("2.1 介绍"); chapterList.add("8.5 使用尚不存在的代码"); chapterList.add("5.3.1 水平方向上的区隔与靠近"); return chapterList; } }
以上就是Java之真实项目中的章节排序实例的内容,更多相关内容请关注PHP中文网(www.php.cn)!

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于结构化数据处理开源库SPL的相关问题,下面就一起来看一下java下理想的结构化数据处理类库,希望对大家有帮助。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于PriorityQueue优先级队列的相关知识,Java集合框架中提供了PriorityQueue和PriorityBlockingQueue两种类型的优先级队列,PriorityQueue是线程不安全的,PriorityBlockingQueue是线程安全的,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于java锁的相关问题,包括了独占锁、悲观锁、乐观锁、共享锁等等内容,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于多线程的相关问题,包括了线程安装、线程加锁与线程不安全的原因、线程安全的标准类等等内容,希望对大家有帮助。

本篇文章给大家带来了关于Java的相关知识,其中主要介绍了关于关键字中this和super的相关问题,以及他们的一些区别,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于枚举的相关问题,包括了枚举的基本操作、集合类对枚举的支持等等内容,下面一起来看一下,希望对大家有帮助。

封装是一种信息隐藏技术,是指一种将抽象性函式接口的实现细节部分包装、隐藏起来的方法;封装可以被认为是一个保护屏障,防止指定类的代码和数据被外部类定义的代码随机访问。封装可以通过关键字private,protected和public实现。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于设计模式的相关问题,主要将装饰器模式的相关内容,指在不改变现有对象结构的情况下,动态地给该对象增加一些职责的模式,希望对大家有帮助。


热AI工具

Undresser.AI Undress
人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover
用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool
免费脱衣服图片

Clothoff.io
AI脱衣机

AI Hentai Generator
免费生成ai无尽的。

热门文章

热工具

SublimeText3汉化版
中文版,非常好用

螳螂BT
Mantis是一个易于部署的基于Web的缺陷跟踪工具,用于帮助产品缺陷跟踪。它需要PHP、MySQL和一个Web服务器。请查看我们的演示和托管服务。

MinGW - 适用于 Windows 的极简 GNU
这个项目正在迁移到osdn.net/projects/mingw的过程中,你可以继续在那里关注我们。MinGW:GNU编译器集合(GCC)的本地Windows移植版本,可自由分发的导入库和用于构建本地Windows应用程序的头文件;包括对MSVC运行时的扩展,以支持C99功能。MinGW的所有软件都可以在64位Windows平台上运行。

禅工作室 13.0.1
功能强大的PHP集成开发环境

SublimeText3 Mac版
神级代码编辑软件(SublimeText3)