副族元素小结(第19-23章) 第19-23章副族元素知识点整理,含铜锌副族、钛钒铬锰副族、铁系与铂系、镧系与锕系。 2026-03-16 Chemistry > Inorganic Chemistry #Chemistry #Inorganic Chemistry
其他章节小结(s区与部分主族) 第12、13、14、18章内容整理,含部分章节思维导图。 2026-03-16 Chemistry > Inorganic Chemistry #Chemistry #Inorganic Chemistry
卤素、氧族、氮族元素(p区元素) 卤素、氧族、氮族元素的性质、制备方法、化合物等内容. 2026-03-16 Chemistry > Inorganic Chemistry #Chemistry #Inorganic Chemistry
碱金属和碱土金属(s区元素,无H) 碱金属和碱土金属(s区元素,无H)的性质、制备方法、化合物等内容. 2026-03-08 Chemistry > Inorganic Chemistry #Chemistry #Inorganic Chemistry
Algorithm Notebook 3(3.1.2026~3.31.2026) Algorithm Notebook 3(3.1.2026~3.31.2026) 2026-03-01 algorithm #algorithm notebook
Algorithm Notebook 2(2.1.2026~2.28.2026) Algorithm Notebook 2(2.1.2026~2.28.2026) 2026-02-01 algorithm #algorithm notebook
Algorithm Notebook 1(1.25.2026~1.31.2026) CF 14A - Letter 题意:给定一个n∗mn*mn∗m矩阵,找到一个矩形,包含所有的’∗*∗‘,并且这个矩形的面积最小。 思路:遍历矩阵,找到最左、最右、最上、最下的’*'的位置,然后计算面积。 123456789101112131415161718192021222324252627282930313233343536373839#include<iostream>usin 2026-01-25 algorithm #algorithm notebook
计算机概率课程复习(开卷资料) 📘《2025年编程模块考试速查手册》 [TOC] 字符串操作 1. 索引与切片 12345678s = "Python"s[0] # 'P' (索引从0开始)s[-1] # 'n' (负索引从-1开始)s[0:3] # 'Pyt' (切片: [起始:结束:步长])s[:3] # 'Pyt 2026-01-15 Python #Python
将积分转化为连续形式用于证明不等式 在证明与积分相关的不等式的时候,可以将积分用离散形式表达,进而进行进一步操作: eg1eg_1eg1 证明: ln∫01f(x) dx≥∫01lnf(x) dx\ln \int_0^1 f(x) \, dx \geq \int_0^1 \ln f(x) \, dx ln∫01f(x)dx≥∫01lnf(x)dx 不妨转化为 ∫01f(x) dx≥e∫01lnf(x) dx\int_0^ 2025-12-07 Mathematics #Mathematics