03 2024 档案

摘要:定义: \(S(n,m)=\sum_{i=1}^ni^m\) 则有: \(S(n,m+1)=\sum_{i=1}^ni^{m+1}\) \(S(n+1,m+1)=\sum_{i=1}^{n+1}i^{m+1}\) 令二式直接相减可得 \(S(n+1,m+1)-S(n,m+1)=(n+1)^{m+1} 阅读全文
posted @ 2024-03-26 18:01 zhuzc_114514 阅读(12) 评论(0) 推荐(0) 编辑
摘要:AVL: #include <bits/stdc++.h> using namespace std; struct Node { int key; int son[2], hei; } node[12345678]; int total; struct AVL { int root; void up 阅读全文
posted @ 2024-03-18 18:17 zhuzc_114514 阅读(18) 评论(2) 推荐(1) 编辑