会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
DIY-Z
博客园
首页
新随笔
联系
管理
上一页
1
···
10
11
12
13
14
15
下一页
2019年5月1日
求素数的一些方法(重点)(正在更新)
摘要: 1.一般筛法求素数+快速线性筛法求素数(点击左方)
阅读全文
posted @ 2019-05-01 22:58 DIY-Z
阅读(134)
评论(0)
推荐(0)
编辑
substr()用法
摘要: 知识点链接:http://www.cplusplus.com/reference/string/string/substr/注意:std::string str2 = str.substr (pos,len); /*从下标为pos处找出长...
阅读全文
posted @ 2019-05-01 08:12 DIY-Z
阅读(179)
评论(0)
推荐(0)
编辑
2019年4月30日
Immediate Decodability UVA-644(qsort排序 + 模拟)
摘要: #include#include#include#includeusing namespace std;char code[1000][100];bool solve(int p){ for(int i = 1; i < p; i++) {...
阅读全文
posted @ 2019-04-30 22:04 DIY-Z
阅读(112)
评论(0)
推荐(0)
编辑
2019年4月29日
Integer Inquiry UVA-424(大整数)
摘要: 题意分析: 将字符串倒着存入int数组中,每次加完后再取余除去大于10的部分关键:倒着存入,这样会明显缩短代码量。#include#include#includeusing namespace std;const int maxn = 100 + 10...
阅读全文
posted @ 2019-04-29 21:06 DIY-Z
阅读(90)
评论(0)
推荐(0)
编辑
Not so Mobile UVA - 839(二叉树的先序遍历)
摘要: #includeusing namespace std;int solve(int &W) /*这里一定要用引用,为了赋给它值*/{ int wl, dl, wr, dr; cin >> wl >> dl >> wr >> dr...
阅读全文
posted @ 2019-04-29 20:09 DIY-Z
阅读(86)
评论(0)
推荐(0)
编辑
2019年4月27日
Hoax or what UVA - 11136(multiset的应用)
摘要: 刚开始把题意理解错了,结果样例没过,后来发现每天只处理最大和最小的,其余的不管,也就是说昨天的元素会影响今天的最大值和最小值,如果模拟的话明显会超时,故用multiset,另外发现rbegin()的功能,收获蛮多的。 ps:关于rbegin()的介绍:https://blog.csdn.net/kj
阅读全文
posted @ 2019-04-27 21:55 DIY-Z
阅读(162)
评论(0)
推荐(0)
编辑
2019年4月25日
Flooded! UVA - 815 (sort排序)
摘要: 错了好多遍,不知道为啥出错,如果有大神发现,请求指点!!!附错误代码(错的不知道怎么回事): #include#include#includeusing namespace std;const int maxn = 32 + 5;int hblock[...
阅读全文
posted @ 2019-04-25 15:48 DIY-Z
阅读(112)
评论(0)
推荐(0)
编辑
UVA-439, Knight Moves(深度优先搜索)
摘要: #include #include #include #include #include using namespace std; struct Point { int x_, y_; int route; }; int dic[8][2] = {-1,2 ,1,2 ,2,1 ,2,-1 ,1,-2 ,-1,-2 ,-2,-1 ,-2,1}; int vis[10][10]; ...
阅读全文
posted @ 2019-04-25 00:32 DIY-Z
阅读(136)
评论(0)
推荐(0)
编辑
2019年2月2日
汉诺塔问题
摘要: /*有n个盘子,都在A上,盘子大小均不等,要求大的在下,小的在上,有A, B, C三个地方,要求将这n个盘子从A移动到C处,每次只能移动一个盘子*//*思路: 当有两个盘子时,只需将1个盘子从A移动到B,便可直接将最后一个 ...
阅读全文
posted @ 2019-02-02 10:14 DIY-Z
阅读(146)
评论(0)
推荐(0)
编辑
矩阵转置问题
摘要: /*设一个矩阵的阶数最多不超过50,将其转置,方法如下*//*不仅适用于正方形,同样也适用于长方形*/#include#define maxn 55int main(){ int m, n; /*m代表行,n代表列*/ whil...
阅读全文
posted @ 2019-02-02 10:13 DIY-Z
阅读(181)
评论(0)
推荐(0)
编辑
上一页
1
···
10
11
12
13
14
15
下一页
公告