求求offer的土拨鼠很无聊
求求offer的土拨鼠很无聊
全部文章
分类
归档
标签
去牛客网
登录
/
注册
求求offer的土拨鼠很无聊的博客
全部文章
(共88篇)
题解 | #第一题#
#include <iostream> using namespace std; const int maxn=200000; int father[maxn]; int height[maxn]; bool visit[maxn]; int findfather(int x){ ...
2023-03-18
0
267
题解 | #哈夫曼树#
#include <iostream> #include <queue> #include <vector> using namespace std; struct treenode{ int value; bool leaf; treen...
2023-03-17
0
276
题解 | #畅通工程#
#include <iostream> using namespace std; const int maxn=1000; int father[maxn]; int height[maxn]; void init(){ for(int i=0;i<maxn;i++){ ...
2023-03-16
0
261
题解 | #子串计算#
#include <iostream> #include <map> using namespace std; int appearTimes(string x,string y){ int i=0; int r=0; while(i<x.len...
2023-03-16
0
315
题解 | #魔咒词典#
#include <iostream> #include <map> #include <string> using namespace std; map<string,string> wizd; int main() { string x; ...
2023-03-16
0
307
题解 | #查找学生信息#
#include <cstdio> #include <iostream> #include <map> #include <string> using namespace std; map<string,string> student; ...
2023-03-16
0
214
题解 | #复数集合#
#include <iostream> #include <queue> using namespace std; struct complex{ int real; int hypo; int value; complex(int a,int...
2023-03-16
0
302
题解 | #二叉排序树#
#include <iostream> using namespace std; struct BiOTree{ int data; struct BiOTree* leftchild; struct BiOTree* rightchild; BiOTre...
2023-03-16
0
267
题解 | #玛雅人的密码#
#include <iostream> #include <cstring> #include <queue> #include <map> using namespace std; struct code{ int count; st...
2023-03-16
0
296
题解 | #N的阶乘#
#include <iostream> using namespace std; const int maxn=10000; struct largeNum{ int digit[maxn]; int length; largeNum(string x){ ...
2023-03-15
0
240
首页
上一页
1
2
3
4
5
6
7
8
9
下一页
末页