El pueblo unido jamas serà vencido!

摘要: 前言 重写旧文 & 增加新内容。 欧几里得算法 $$\large \gcd(a,a) = a\ \gcd(a,b) = \gcd(b,a \bmod b) \[ ```cpp int gcd(int a,int b) { return b ? gcd(b,a % b) : a; } ``` 非递归 阅读全文
posted @ 2022-01-26 15:27 AstatineAi 阅读(43) 评论(0) 推荐(0) 编辑
摘要: 以下内容译自 Dave Richeson 教授的博客 : What is the difference between a theorem, a lemma, and a corollary? 这是他在迪金森学院授课时为学生准备的文字讲稿(handout). 原文 PDF 版本 : \(\matht 阅读全文
posted @ 2022-01-26 09:49 AstatineAi 阅读(548) 评论(0) 推荐(0) 编辑
摘要: 关于这个博客 之前洛谷和 Hexo 和 Wordpress 博客的模拟赛总结不考虑搬运了。 可能会重写一些博客权当复习。 慢慢补上吧。 前排广告 自认为不错的内容 剩下的勉强能看的东西 还有啥? 剩下的就是完全不能看的低质量内容了,不予放入目录. 友链 Hanoist 他的博客 CodingJell 阅读全文
posted @ 2022-01-25 17:23 AstatineAi 阅读(59) 评论(0) 推荐(0) 编辑