风度翩翩的zzp很谦虚
风度翩翩的zzp很谦虚
全部文章
分类
归档
标签
去牛客网
登录
/
注册
风度翩翩的zzp很谦虚的博客
全部文章
(共3篇)
题解 | #大整数的因子#
//字符串除法模拟 #include <iostream> #include <string> using namespace std; bool canModk(string s, int k){ int current = 0; for(string::...
2023-02-24
0
260
题解 | #整除问题#
//利用质因数分解的方法 #include <algorithm> #include <iostream> #include <map> #include <vector> #include <cmath> using namespace ...
2023-02-24
0
258
题解 | #String Matching#
#include <iostream> #include <string> #include <vector> using namespace std; vector<int> GetNextTable(const string& p){ /...
2023-02-20
0
280