hjwdashuaibi 2023-09-26 15:37 采纳率: 47.4%
浏览 4
已结题

如何确定有限自动机的正规式

明明d选项的正规式也可以得到终态c,也可以做到01结尾,为什么d是错误的

img

  • 写回答

1条回答 默认 最新

  • CSDN-Ada助手 CSDN-AI 官方账号 2023-09-26 18:14
    关注

    【相关推荐】



    • 你可以看下这个问题的回答https://ask.csdn.net/questions/7768760
    • 这篇博客你也可以参考下:C盘不够用-删除D盘空间贡献给C盘的简单方法
    • 您还可以看一下 李飞老师的C语言开发之数据结构与算法四课程中的 哈夫曼树及哈夫曼编码小节, 巩固相关知识点
    • 除此之外, 这篇博客: 如何将D盘中的目录拷贝到C盘指定目录下中的 代码实现 部分也许能够解决你的问题, 你可以仔细阅读以下内容或跳转源博客中阅读:
      import java.io.*;
      
      public class CopyAll {
          public static void main(String[] args) {
              //拷贝源
              File srcFile = new File("D:\\360Safe");
              //拷贝目标
              File destFile = new File("c:\\a\\b\\");
              //调用拷贝方法
              copyDir(srcFile,destFile);
          }
      
          private static void copyDir(File srcFile, File destFile) {
              if (srcFile.isFile()){
                  //srcFile肯定先是一个目录,是一个文件的话递归结束
                  //在目录里进行拷贝,一边读一边写
                  FileInputStream in = null;
                  FileOutputStream out = null;
                  try {
                      //读这个文件
                      in = new FileInputStream(srcFile);
                      //写到这个文件里
                      String path = (destFile.getAbsolutePath().endsWith("\\") ? destFile.getAbsolutePath() : destFile.getAbsolutePath() + "\\") + srcFile.getAbsolutePath().substring(3);
                      out = new FileOutputStream(path);
                      byte[] bytes = new byte[1024 * 1024];
                      int readCount = 0;
                      while((readCount = in.read(bytes)) != -1){
                          out.write(bytes,0,readCount);
                      }
                      out.flush();
                  } catch (FileNotFoundException e) {
                      e.printStackTrace();
                  } catch (IOException e) {
                      e.printStackTrace();
                  } finally {
                      if (in != null) {
                          try {
                              in.close();
                          } catch (IOException e) {
                              e.printStackTrace();
                          }
                      }
                      if (out != null) {
                          try {
                              out.close();
                          } catch (IOException e) {
                              e.printStackTrace();
                          }
      
                      }
      
                  }
                  return;
              }
              //获取源下面的子目录
              File[] files = srcFile.listFiles();
              for (File file : files){
                  //获取所有目录和文件的绝对路径
                 // System.out.println(file.getAbsoluteFile());
                  if (file.isDirectory()){
                      String srcDir = file.getAbsolutePath();
                      String destDir = (destFile.getAbsolutePath().endsWith("\\") ? destFile.getAbsolutePath() : destFile.getAbsolutePath() + "\\") + srcDir.substring(3);
                      File newFile = new File(destDir);
                      if (!newFile.exists()){
                          newFile.mkdirs();  //建好目录
                      }
                  }
                  //递归调用
                  copyDir(file,destFile);
              }
          }
      }
      

    如果你已经解决了该问题, 非常希望你能够分享一下解决方案, 写成博客, 将相关链接放在评论区, 以帮助更多的人 ^-^
    评论

报告相同问题?

问题事件

  • 已结题 (查看结题原因) 1月18日
  • 修改了问题 9月26日
  • 创建了问题 9月26日