摘要: POJ ZOJ UVALive SGU URAL HUST SPOJ HDU HYSBZ UVA CodeForces Z-Trening Aizu LightOJ UESTC NBUT FZU CSU SCU ACdream CodeChef OpenJudge Kattis HihoCoder 阅读全文
posted @ 2023-03-24 20:45 星云体 阅读(56) 评论(0) 推荐(0) 编辑
摘要: C++ : 使用动态规划 算法的函数 int knapsack(int W, int wt[], int val[], int n) { int dp[n+1][W+1]; //报错 for (int i = 0; i <= n; i++) { for (int w = 0; w <= W; w++ 阅读全文
posted @ 2023-03-19 21:44 星云体 阅读(54) 评论(0) 推荐(0) 编辑
摘要: 给定一个数组,找出组内元素相加值最大的子数组, 子数组元素由 给定数组的连续元素组成,子数组长度 在 1 和 给定数组的长度之间。 #include <iostream> #include <climits> using namespace std; // 返回两个数中的最大值 int max(in 阅读全文
posted @ 2023-03-19 16:34 星云体 阅读(21) 评论(0) 推荐(0) 编辑
摘要: VMware 解锁 MacOS https://github.com/DrDonk/unlocker/releases 修改 .vmx 文件 末尾加入 smc.version = "0" --可能需要添加这句 cpuid.0.eax = "0000:0000:0000:0000:0000:0000: 阅读全文
posted @ 2023-03-19 14:12 星云体 阅读(167) 评论(0) 推荐(0) 编辑
摘要: http://acm.hdu.edu.cn/showproblem.php?pid=1094 #include <iostream> #include <vector> int main() { using namespace std; vector<int> vecrow; vector<int> 阅读全文
posted @ 2023-03-18 18:48 星云体 阅读(17) 评论(0) 推荐(0) 编辑
摘要: 如何改善PDF的清晰度?———小白教程 - 知乎 (30 封私信 / 81 条消息) 想把自己的书籍扫描成PDF,什么样的扫描仪比较合适? - 知乎 ComicEnhancePro 等书籍 图片 处理软件 PDF补丁丁 - 博客园 ComicEnhancerPro 优秀参数Levels: 59000 阅读全文
posted @ 2023-03-17 22:37 星云体 阅读(178) 评论(0) 推荐(0) 编辑
摘要: epoll是Linux中的一种高效的I/O多路复用机制,它可以有效地管理大量的文件描述符并监控这些文件描述符的I/O事件。本篇回答将为您提供epoll程序实例及详解。 epoll的工作原理在传统的I/O多路复用机制中,如select和poll,每当需要进行一次I/O监控时,都需要将所有要监控的文件描 阅读全文
posted @ 2023-03-09 22:13 星云体 阅读(25) 评论(0) 推荐(0) 编辑
摘要: ubuntu 中安装 docker: Install Docker Engine on Ubuntu 查看docker hub 中 zadam/trilium 最新版本 : https://hub.docker.com/r/zadam/trilium/tags 知道 版本号 以便于 用 docker 阅读全文
posted @ 2023-03-05 18:23 星云体 阅读(496) 评论(0) 推荐(0) 编辑
摘要: 环境: windows 上安装 vmware >> vmware 中安装 ubuntu , 需要 windows 方便的编辑 ubuntu 中的文件。 通过在 ubuntu 系统中 安装 samba ,使得 windows 10 能访问 安装在 vmware 中的 ubuntu 文件。 sudo a 阅读全文
posted @ 2023-03-04 18:30 星云体 阅读(1472) 评论(0) 推荐(0) 编辑
摘要: 一文教您使用 Sandboxie Plus 运行 QQ 桌面版 阅读全文
posted @ 2023-02-17 16:22 星云体 阅读(115) 评论(0) 推荐(0) 编辑