摘要:
如何用递归找出数组中的最大值如:int[] a = {1,2,3,4,5,6,7,8,9,10};如何用递归找出它的最大值?static int max(int[] array) { return max(array, 0); } static int max(int[] array, i... 阅读全文
2014年6月29日 #
摘要:
使用Lucene来搜索内容,搜索结果的显示顺序当然是比较重要的.Lucene中Build-in的几个排序定义在大多数情况下是不适合我们使用的.要适合自己的应用程序的场景,就只能自定义排序功能,本节我们就来看看在Lucene中如何实现自定义排序功能. Lucene中的自定义排序功能和Java集合中的... 阅读全文