随笔分类 - 杂项
摘要:前情提要 距离我上次尝试完成Csapp已是一年前,在期末周时迅速放弃了 两年前的环境搭建ArchLinux 本地一把梭,出于对本地环境的隔离与保护这次将使用容器化技术+Vscode搭建尽量避免对本机的影响,以及达到对环境更好的管理与备份。 yay -S docker sudo useradd -aG
阅读全文
摘要:What does "{} ;" mean in the find command? If you run find with exec, {} expands to the filename of each file or directory found with find (so that ls
阅读全文
摘要:环境配置 工欲善其事,必先利其器。 编译器是通过源代码生成目标代码的软件,例如常见的的C++编译器有Linux 下的GCC和WIN下的GCC 编辑器有neovim ,vscode ... 这里介绍的是CP Editor 的环境配置也是笔者所使用的环境 CP Editor 专为算法竞赛设计,不像其它
阅读全文
摘要:7-23洛谷做题记录 P1359 租用游艇 DP求或最短路 #include <bits/stdc++.h> using namespace std; int f[210],i,j,k,n; int main() { cin >> n; for(int i = 1 ; i <= n ; i ++ )
阅读全文