C++排序算法的实现

L如果你害怕失敗,那你很有可能會失敗。 If you’re afraid to fail, then you’re probably going to fail. C++排序算法的实现 头文件 cpp #ifndef OPP_CSORT_CSORT_H #define OPP_CSORT_CSORT_H class Csort { private: int part(int* arr,int l,int r); int aux[362880]; void MergeAux(int arr[],int l,int mid,int r); long int factory[11]={1,1,2,6,24,120,720,5040,40320,362880,3628800}; bool Cantor(int

线性表P19综合题(2)

L如果你害怕失敗,那你很有可能會失敗。 If you’re afraid to fail, then you’re probably going to fail. 线性表P19综合题(2)从此篇开始,不再放出main函数和其他辅助函数,例如sw

nvim配置文件备份

L如果你害怕失敗,那你很有可能會失敗。 If you’re afraid to fail, then you’re probably going to fail. nvim配置文件备份 .config/nvim markdown . ├── nvim │ ├── init.lua │ ├── lua │ │ ├── keymaps.lua │ │ ├── config │

Yolov8关于创新点的讨论

L如果你害怕失敗,那你很有可能會失敗。 If you’re afraid to fail, then you’re probably going to fail. Yolov8关于创新点的讨论 移动检测应用通过上传模型到roboflow网站,ro

线性表开篇头文件

L如果你害怕失敗,那你很有可能會失敗。 If you’re afraid to fail, then you’re probably going to fail. 线性表开篇头文件 cpp //Liner.h #pragma once #include<iostream> #include <cstdio> #include<cstdlib> typedef int Status; #define maxn 100 typedef int ElemType; typedef struct { ElemType data[maxn]; //数组基地址类型 int

git自动push的脚本

L如果你害怕失敗,那你很有可能會失敗。 If you’re afraid to fail, then you’re probably going to fail. git自动push的脚本 shell #!/bin/bash # 保存当前目录 ORIGINAL_DIR=$(pwd) # 配置部分 REPO_PATH="/Users/qiansu/githubRepo/yakutsukuriyuu.github.io" # 替换为你的Git仓库路

iterm2美化

L如果你害怕失敗,那你很有可能會失敗。 If you’re afraid to fail, then you’re probably going to fail. iterm2美化 准备阶段需要homebrew包管理器 shell /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" 安装iterm2

矩阵加速

L如果你害怕失敗,那你很有可能會失敗。 If you’re afraid to fail, then you’re probably going to fail. 矩阵加速模版 cpp #include <iostream> #include <fstream> #include <cstring> #define _rep(i,a,b) for(int i=(a);i<=(b);++i) #define _for(i,a,b) for(int i=(a);i<(b);++i) #define MAXN 105 const int mod = 1e9+7; using namespace std; int MatrixN ; inline long long read(){ long

命令行增强工具

L如果你害怕失敗,那你很有可能會失敗。 If you’re afraid to fail, then you’re probably going to fail. 命令行增强工具 lsd 增强形态的ls shell brew install lsd bat shell brew install bat diff-so-fancy shell brew install diff-so-fancy htop shell brew install htop prettyping shell brew install prettyping fzf

生成hexo用md脚本

L如果你害怕失敗,那你很有可能會失敗。 If you’re afraid to fail, then you’re probably going to fail. 生成hexo用md脚本 shell #!/bin/bash if [ "$#" -gt 4 ]; then echo "使用方法: $0 [标题] [类别]