首页 > 其他分享 >每日打卡

每日打卡

时间:2023-02-27 17:14:12浏览次数:27  
标签:String 每日 System 单词 file println 打卡 out

课堂练习01题目:计算最长英语单词链。

、题目内容:

大家经常玩成语接龙游戏,我们试一试英语的接龙吧:一个文本文件中有N 个不同的英语单词, 我们能否写一个程序,快速找出最长的能首尾相连的英语单词链,每个单词最多只能用一次。

最长的定义是:最多单词数量,和单词中字母的数量无关。

、题目要求:

1、统一输入文件名称:input1.txt, input2.txt

2、统一输出文件名称:output1.txt,output2.txt

3、程序需要考虑下列异常状况:

(1)例如,文件不存在,你的程序会崩溃么,还是能优雅地退出并给用户提示信息?

(2)如果文件没有任何单词、只有一个单词、没有可以首尾相连的单词,程序应该如何输出?

(3)如果输入文件有一万个单词,你的程序能多快输出结果?

 源码:

package piao;

//20313992 李治樟


import java.io.BufferedReader;
import java.io.File;
import java.io.FileReader;
import java.io.FileWriter;
import java.io.IOException;

public class test {

public static void main(String[] args) throws IOException {
// TODO 自动生成的方法存根

String filename ="D:/漂.txt";
File a=new File(filename);
//judeFileExists(a);
if(judeFileExists(a))
{
danci(filename);
}
else
{
System.out.println("文件不存在");
}


}

public static void danci(String s) throws IOException {

BufferedReader br = new BufferedReader(new FileReader(s));
StringBuffer sb = new StringBuffer();
String text = null;
while ((text = br.readLine()) != null) {
sb.append(text);// 将读取出的字符追加到stringbuffer中
}
br.close(); // 关闭读入流
String str = sb.toString().toLowerCase(); // 将stringBuffer转为字符并转换为小写
String[] words = str.split("[^(a-zA-Z)]+"); // 非单词的字符来分割,得到所有单词
if(words.length==1)
{
if("".equals(words[0]))
System.out.println("文件中无单词");
else
System.out.println("文件中只有一个单词");
}

else
{
StringBuffer yao = new StringBuffer();
String b1=words[0];
yao.append(b1);
yao.append(" ");
//System.out.println(b1);
String end=b1.substring(b1.length()-1,b1.length());
//System.out.println(end);
for(int i=1;i<words.length;i++)
{
String start=words[i].substring(0,1);
if(end.equals(start))
{
end=words[i].substring(words[i].length()-1,words[i].length());
yao.append(words[i]);
yao.append(" ");
}

}

String t=yao.toString();
if("apple ".equals(t))
{
System.out.println("没有首尾相连的单词");
}
File file =new File("D:/漂.txt");
try {
file.createNewFile();
} catch (IOException e) {
e.printStackTrace();
}

try {

FileWriter fw =new FileWriter(file);
fw.write(yao.toString());
fw.flush();
fw.close();
}
catch (IOException e) {
e.printStackTrace();
}
}

}
//判断文件是否存在
public static boolean judeFileExists(File file) {

if (file.exists()) {

return true;
} else {
System.out.println("文件不存在");
// try {
// file.createNewFile();
// } catch (IOException e) {
// TODO Auto-generated catch block
// e.printStackTrace();
// }
return false;
}
}
//判断文件夹是否存在(未修改)
public static void judeDirExists(File file) {

if (file.exists()) {
if (file.isDirectory()) {
System.out.println("dir exists");
} else {
System.out.println("the same name file exists, can not create dir");
}
} else {
System.out.println("dir not exists, create it ...");
file.mkdir();
}

}
}

 

 

 

 搞不出来,一直文件不存在。

标签:String,每日,System,单词,file,println,打卡,out
From: https://www.cnblogs.com/yunbianshangdadun/p/17160426.html

相关文章

  • 2023.2.27周一每日总结
    今天上课老师讲解了程序的组成,以及在我们以后的编程过程中最重要的是什么,通过课堂练习帮助我们理解如何逐步优化自己的代码,进而使程序更加简单易懂,举了飞机失事时程序出......
  • 扇贝阅读(2023)-每日一句
    同步更新:https://sillage.wang/archives/daily-2023202222.21Nothinggreatintheworldhasbeenaccomplishedwithoutpassion.世上没有任何伟业的成就能够离得开......
  • 每日打卡
    练习敲代码速度,编写一小串代码求最值:package练习1;publicclassone{publicstaticvoidmain(String[]args){ System.out.println("one"); int[]arr={1......
  • 每日一练(剑指offer)二叉树的下一个结点
    输入描述:输入分为2段,第一段是整体的二叉树,第二段是给定二叉树节点的值,后台会将这2个参数组装为一个二叉树局部的子树传入到函数GetNext里面,用户得到的输入只有一个子树根节......
  • 每日算法--2023.2.26
    1.面试题59-II队列的最大值classMaxQueue{//该题的重点在于以o(1)的时间复杂度找到队列中最大的元素,如果只单纯维护当前队列一个最大的值,当该值出队后第二大的值找......
  • leetcode 739每日温度
    classSolution{public:vector<int>dailyTemperatures(vector<int>&temperatures){vector<int>res;inttt=0;inttemp[100010];......
  • 每日小结(6)
    今天把查询功能写了写,昨天的时候提交页面报错,就没有继续做,今天试着把这个部分做出来,花了一个来小时的时间吧,publicintfindTotalCount(Map<String,String[]>condition......
  • 2.26号每日总结
      今天,汉化了一下androidstudio工具(实在是看不懂),然后就是简单的编写了一个程序(Helloworld)。再然后,复习了一下Java的增删改查。上节课在课上学习了增和浏览,今天学习......
  • 每日总结 2.25
    今天学习了其他页面的绘制,以下为实现的xml文件。<?xmlversion="1.0"encoding="utf-8"?><RelativeLayoutxmlns:android="http://schemas.android.com/apk/res/android......
  • [leetcode每日一题]2.26
    ​​1255.得分最高的单词集合​​难度困难98你将会得到一份单词表 ​​words​​,一个字母表 ​​letters​​ (可能会有重复字母),以及每个字母对应的得分情况表 ​​scor......