作业01飘
课堂练习01题目:计算最长英语单词链。
2023.6.10
一、题目内容:
大家经常玩成语接龙游戏,我们试一试英语的接龙吧:一个文本文件中有N 个不同的英语单词, 我们能否写一个程序,快速找出最长的能首尾相连的英语单词链,每个单词最多只能用一次。
最长的定义是:最多单词数量,和单词中字母的数量无关。
二、题目要求:
1、统一输入文件名称:input1.txt, input2.txt
2、统一输出文件名称:output1.txt,output2.txt
3、程序需要考虑下列异常状况:
(1)例如,文件不存在,你的程序会崩溃么,还是能优雅地退出并给用户提示信息?
(2)如果文件没有任何单词、只有一个单词、没有可以首尾相连的单词,程序应该如何输出?
(3)如果输入文件有一万个单词,你的程序能多快输出结果?
package test111;
import java.io.BufferedReader;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.FileWriter;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.ArrayList;
public class find {
public static void main(String[] args) throws IOException {
File file = new File("D:\\飘.txt");
ArrayList<String> arrayList = new ArrayList<>();
try {
InputStreamReader Reader = new InputStreamReader(new FileInputStream(file));
BufferedReader buffer = new BufferedReader(Reader);
String s;
while ((s = buffer.readLine()) != null) {
arrayList.add(s);
}
buffer.close();
Reader.close();
} catch (IOException e) {
e.printStackTrace();
}
String a, b, str;
String[] arr = new String[arrayList.size()];
for (int i = 0; i < arrayList.size(); i++) {
arr[i] = arrayList.get(i);
}
String[] s2 = new String[arrayList.size()];
for (int i = 0; i < arrayList.size(); i++) {
str = arr[i];
a = arr[i].substring(arr[i].length() - 1, arr[i].length());
for (int j = 0; j < arrayList.size(); j++) {
b = arr[j].substring(0, 1);
if (arr[i].equals(arr[j]) == false && a.equals(b)) {
str = str + arr[j];
a = arr[j].substring(arr[j].length() - 1, arr[j].length());
}
b = null;
}
s2[i] = str;
}
File filew = new File("D:\\飘.txt");
FileWriter out = new FileWriter(filew);
for (int i = 0; i < s2.length; i++) {
out.write(s2[i] + "\n");
}
out.close();
System.out.println("输出成功");
}
}
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· Ollama——大语言模型本地部署的极速利器
· 使用C#创建一个MCP客户端
· 分享一个免费、快速、无限量使用的满血 DeepSeek R1 模型,支持深度思考和联网搜索!
· Windows编程----内核对象竟然如此简单?
· ollama系列1:轻松3步本地部署deepseek,普通电脑可用