今天课上,我们进行了一个小测试,是关于计算最长英语单词链的题目。内容如下:
一、题目内容
大家经常玩成语接龙游戏,我们试一试英语的接龙吧:一个文本文件中有N个不同的英语单词,我们能否写一个程序,快速找出最长的能首尾相连的英语单词链,每个单词最多只能用一次。
最长的定义是:最多的单次数量,和单词中字母的数量无关。
二、题目要求
1、统一输入文件名称:input1.txt、input2.txt
2、统一输出文件名称:output1.txt、output2.txt
3、程序需要考虑下列异常状况:
(1)例如,文件不存在,你的程序会崩溃吗,还是能优雅地退出并给出用户提示信息?
(2)如果文件没有任何单词、只有一个单词、没有可以首尾相连的单词,程序应该如何输出?
(3)如果输出文件有一万个单词,你的程序能多块输出结果?
package test;标签:word,sentence,日报,System,第六天,length,软件工程,println,out From: https://www.cnblogs.com/tianminggeng/p/17161702.html
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.PrintStream;
import java.util.Scanner;
public class test {
public static void OutputStream(String max) {
// 将数据写入文件
PrintStream ps = null;
try {
ps = new PrintStream(new FileOutputStream("C:\\Users\\adnim\\Desktop\\b.txt"));
//将完成运算后的数据输出到新的文件中
System.setOut(ps);
System.out.println(max);
} catch (IOException ex) {
ex.printStackTrace();
} finally {
if (ps != null) {
ps.close();
}
}
}
public static void main(String[] args) throws FileNotFoundException {
File file = new File("C:\\Users\\adnim\\Desktop\\c.txt");// 读取文件
if (!file.exists()) {// 如果文件打不开或不存在则提示错误
System.out.println("文件不存在");
return;
}else {
if(file.exists() && file.length() == 0) {
System.out.println("文件为空!");
return;
}
}
long startTime = System.currentTimeMillis();
String[] strs=new String[10000000];
Scanner x = new Scanner(file);
int i=0;
boolean flag=false;
while(x.hasNextLine()) {
String[] str=x.nextLine().split("\\W+");
for(int ms=0;ms<str.length;ms++) {
if(!str[ms].equals("")&&str[ms].length()>2) {
flag=false;
//System.out.println(str[ms]);
if(i!=0) {
for(int t=0;t<i;t++) {
if(!str[ms].equals(strs[t])) {
flag=true;
}
}
}else {
flag=true;
}
if(flag) {
strs[i]=str[ms];
i++;
}
}
}
}
if(i==1) {
System.out.println("该文件只有一个单词!无法实现词语接龙");
}
String sentence = "";
String word="";
String max="";
for(int m=0;m<i;m++) {
sentence = strs[m];
word = sentence;
for(int j=m+1;j<i;j++) {
if(strs[j].toLowerCase().subSequence(0, 1).equals(word.toLowerCase().subSequence(word.length()-1,word.length())))
// if(strs[j].toLowerCase().subSequence(0, 1).equals(word.toLowerCase().subSequence(word.length()-1, word.length())))
{
word = strs[j];
sentence+="-"+word;
}
}
if(sentence.indexOf("-")!=-1) {
if(sentence.length()>max.length()) {
max = sentence;
}
// System.out.println(sentence);
}
}
long endTime = System.currentTimeMillis();
System.out.println(endTime-startTime+"ms");
System.out.println(i);
if(max.length()!=0) {
OutputStream(max);
// System.out.println(max);
}else {
System.out.println("没有首尾相连");
}
}
}
三、心得体会
通过此次模拟练习,我又一次的温习了一遍java中关于文件操作的几个步骤,并且学习到了如果文件中的内容量过大,java是无法正常运行,我们必须将文件中的内容分隔开来分别操作然后通过一定的语句再将他们连接起来,最后实现大型数据的文件流操作。