03 2021 档案
递归搜索树
摘要:#include <iostream> using namespace std; const int N = 10; int n; void dfs(int u, int nums[], bool st[]) { if (u > n) { for (int i = 1; i <= n; i ++ )
高精度求幂
摘要:1 #include <iostream> 2 3 using namespace std; 4 5 const int N = 3010; //定义一个3010位的数组,表示高精度运算的支持位数,最大可以很大 6 7 int main() 8 { 9 int a[N] = {1}; 10 /* 1