ファイルから入力を読み取り、単語をソートしてからファイル全体をソートする Java プログラムを作成します。入力はファイルから完全に読み取られますが、分割を正確に行うことはできません。
この問題を短時間で解決するための適切な解決策を提案してください..
コード:
import java.io.BufferedReader;
import java.io.FileReader;
import java.util.*;
public class HariPriya {
public static void main(String[] ags)throws Exception
{
long st=System.currentTimeMillis();
int v=0;
String line;
List ls=new ArrayList();
//To read data from file
BufferedReader in=new BufferedReader(new FileReader("D:/hari3.txt"));
System.out.println("The original text is:");
while((line = in.readLine())!= null)
{
System.out.println(line);
}
String read=line.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);
}
}