编写一个 java 程序从文件中读取输入,然后对每个单词中的字符进行排序。完成此操作后,按升序对所有结果单词进行排序,最后是文件中数值的总和。
- 处理数据时删除特殊字符和停用词
- 测量执行代码所花费的时间
假设文件的内容是:Sachin Tendulkar 获得了 18111 次 ODI 运行和 14692 次测试运行。
输出:achins adeklnrtu adn cdeors dio estt nrsu nrsu 32803
耗时:3毫秒
我的代码需要 15 毫秒才能执行.....
请建议我任何快速的方法来解决这个问题............
代码:
import java.io.BufferedReader;
import java.io.FileReader;
import java.util.*;
public class Sorting {
public static void main(String[] ags)throws Exception
{
long st=System.currentTimeMillis();
int v=0;
List ls=new ArrayList();
//To read data from file
BufferedReader in=new BufferedReader(
new FileReader("D:\\Bhive\\File.txt"));
String read=in.readLine().toLowerCase();
//Spliting the string based on spaces
String[] sp=read.replaceAll("\\.","").split(" ");
for(int i=0;i<sp.length;i++)
{
//Check for the array if it matches number
if(sp[i].matches("(\\d+)"))
//Adding the numbers
v+=Integer.parseInt(sp[i]);
else
{
//sorting the characters
char[] c=sp[i].toCharArray();
Arrays.sort(c);
String r=new String(c);
//Adding the resulting word into list
ls.add(r);
}
}
//Sorting the resulting words in ascending order
Collections.sort(ls);
//Appending the number in the end of the list
ls.add(v);
//Displaying the string using Iteartor
Iterator it=ls.iterator();
while(it.hasNext())
System.out.print(it.next()+" ");
long time=System.currentTimeMillis()-st;
System.out.println("\n Time Taken:"+time);
}
}