上一页 1 2 3 4 5 6 7 ··· 30 下一页
摘要: 计算机网络知识整理 **OSI(Open System Interconnection Model)七层协议:**应用层(Application Layer),表示层(Prensentation Layer),会话层(Session Layer),传输层(Transport Layer),网络层(N 阅读全文
posted @ 2023-05-18 18:07 Xxaj5 阅读(36) 评论(0) 推荐(0) 编辑
摘要: 数据结构-基本算法复习 第八章 排序 插入排序 直接插入排序:$O(n^2)$ 稳定排序 将一条记录插入到已经排序好的有序表中: void insertSort(int r[], int len) { for (int i = 2; i <= len; i++) { if (r[i] < r[i- 阅读全文
posted @ 2023-05-18 18:06 Xxaj5 阅读(21) 评论(0) 推荐(0) 编辑
摘要: 英语口语问题 https://blog.csdn.net/weixin_43595277/article/details/120519303 professional master degree 专业硕士 Academic master degree 学术硕士 undergraduate 本科生 p 阅读全文
posted @ 2023-05-18 18:00 Xxaj5 阅读(119) 评论(0) 推荐(0) 编辑
摘要: 采用的是socket通信,之前写过C的,这次需要用到python,参考的代码原链接如下:https://www.cnblogs.com/mosu/p/16072146.html。 (1)首先开放一个端口7000。 ![image](https://img2023.cnblogs.com/blog/1 阅读全文
posted @ 2023-05-12 12:53 Xxaj5 阅读(114) 评论(0) 推荐(1) 编辑
摘要: 海涅定理:$\lim\limits_{x \to a}f(x) = L \Leftrightarrow \forall x_n \to a(n \to \infty),\lim\limits_{n \to \infty}f(x_n) = L,,(x_n \neq a且x_n\in f(x)定义域)$ 阅读全文
posted @ 2022-08-03 14:36 Xxaj5 阅读(1152) 评论(0) 推荐(1) 编辑
摘要: 取整函数基本不等式:$x - 1 < [x] \leq x$ 常用基本极限 $\lim\limits_{x \to 0} \cfrac{\sin x}{x} = 1$ $\lim\limits_{x \to 0} (1 + x)^{\frac{1}{x}} = 1$ $\lim\limits_{x 阅读全文
posted @ 2022-07-17 21:01 Xxaj5 阅读(1659) 评论(0) 推荐(0) 编辑
摘要: 高等数学中的经典反例 $\lim\limits_{n \to \infty} x_n = \alpha \Longleftrightarrow \lim\limits_{k \to \infty} x_{2k - 1} = \lim\limits_{k \to \infty} x_{2k} = \a 阅读全文
posted @ 2022-07-16 17:30 Xxaj5 阅读(1201) 评论(0) 推荐(0) 编辑
摘要: $DP$真的太难了啊!! 首先考虑到$f(i, s)$表示,从前$i$个数中选,最后一个数为$a_i$,且$MEX(a_1,....,a_i) = \left{ \begin{aligned} a_{i} - 1 (s = 0) \ a_{i} + 1(s = 1)\end{aligned} \ri 阅读全文
posted @ 2022-05-05 17:51 Xxaj5 阅读(33) 评论(0) 推荐(1) 编辑
摘要: 折磨了我三天的$DP$,终于看懂啦。 首先,如果想要有题目要求的效果,那么最短的边一定都是与$1$相连的,就是一个菊花图,生成树里的边就是最短的边。 $f[i][j]$表示已经有$i$个点与$1$相连,且最大权值不超过$j$的方案。 那么我们考虑如何从$j$转移到$j + 1$,看下图,已经连接了$ 阅读全文
posted @ 2022-05-01 20:56 Xxaj5 阅读(20) 评论(0) 推荐(0) 编辑
摘要: 设$f[v]$是以结点$v$为根的方案数,设左子树的根为$x$,右子树的根为$y$,那么如果左右子树完全相同,那么我们交换左右子树对方案没有任何影响,都是: \[ f[v] = f[x] * f[y] \] 如果左右子树不相同,那么则多出$f[x] * f[y]$的贡献,所以方案数为$f[v] = 阅读全文
posted @ 2022-04-28 18:43 Xxaj5 阅读(32) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 30 下一页