前期准备
一个 Mac 电脑 一个 U 盘(8GB 以上) 下载好 Linux 系统镜像(iso 文件)
具体步骤
挂载 U 盘 解挂 U 盘 写系统镜像到 U 盘 完成
一、挂载 U 盘
首先插入 U 盘,打开终端输入下面的命令查看 U 盘是否已经 m…
BF算法
#include <iostream>
#include <string> using namespace std; // 暴力匹配算法
int bruteForceMatch(const string& s, const string& p) { int n s.length(); int m p.length(); for (int i 0; i < n - m; i) { int j; for (j …