- 博客(66)
- 资源 (14)
- 收藏
- 关注
原创 JAVA实现汉字转拼英
JAVA实现汉字转拼英1.准备工具2.工具导入Eclipse项目3.工具类 ChineseToEnglish 的代码4.测试5.运行结果1.准备工具pinyin4j-2.5.0.jar 包2.工具导入Eclipse项目选择添加找到 jar 包的路径,打开即可成功添加3.工具类 ChineseToEnglish 的代码/* * 工具类:ChineseToEnglish,需要导入 pinyin4j-2.5.0.jar 包 * 调用方式:ChineseToEnglish.getF
2020-06-16 16:24:40 2025
原创 C#实现手机验证码
1.首先在此网站注册一个账号:https://user.ihuyi.com/login.php2.成功后点击 验证码通知短信3.可以看到自己的短信条数余额(用完了可以充值)4.记住APIID 和 APIKEY5.查看接入文档,有相应程序的接口6.得到代码7.嵌入到程序中即可,调用相应的接口即可进行短信的发送验证实例截图...
2020-06-07 15:47:42 1392 1
原创 HDU 2090 算菜价
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2090题解:注意输出格式AC代码:#include <string>#include <iostream>using namespace std;int main(){ string seeds; double amount, price; do...
2019-09-04 18:56:23 342
原创 HDU 2087 剪花布条
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2087题解:本题相当于查找最大字串。可以用字符串string中的find函数进行处理,查找失败返回-1,查找成功返回字符串的下标位置,每次找到向后移动“待查找字符串的位置”,再进行累加即可。AC代码:#include <string>#include <iost...
2019-09-04 18:28:30 149
原创 HDU 2187 悼念512汶川大地震遇难同胞——老人是真饿了
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2187题解:贪心算法,用一个结构体存单价、数量,对单价排序,从价格最小的开始购买,即可得到最大数量的大米重量AC代码:#include <iostream>#include <algorithm>using namespace std;struct I...
2019-08-22 19:37:18 292
原创 HDU 2190 悼念512汶川大地震遇难同胞——重建希望小学
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2190题解:找规律,多写几组数据得出递推公式为:f[i] = f[i-1] + 2*f[i-2]AC代码:#include <iostream>using namespace std;int fun(int n) { if(n == 1) return 1; e...
2019-08-22 16:32:10 172
原创 HDU 2188 悼念512汶川大地震遇难同胞——选拔志愿者
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2188题解:本题是巴什博奕(Bash Game):一堆物品有n个,两个人轮流从这堆物品中取物,规定每次至少取一个,最多取m个。最后取光者得胜。n = (m+1)r+s , (r为任意自然数,s≤m), 即n%(m+1) != 0, 则先取者肯定获胜AC代码:#include ...
2019-08-22 16:10:55 165
原创 HDU 2186 悼念512汶川大地震遇难同胞——一定要记住我爱你
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2186题解:注意不足10人的情况,在最终结果上加上一个9,再对10取余即可解决。AC代码:#include <iostream>using namespace std;int main(){ int n, m, a, b, c; cin >> n;...
2019-08-22 15:21:39 193
原创 HDU 2040 亲和数
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2040题解:先判断第一个数的所有约数和是否与第二个数相等,若相等再判断,否则直接结束AC代码:#include <iostream>using namespace std;int main(){ int n, a, b; cin >> n; whi...
2019-08-22 14:57:32 96
原创 HDU 2042 不容易系列之二
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2042题解:根据关系可推出每次的羊比上一次多2的N次方倍AC代码:#include <iostream>using namespace std;int main(){ int n, m; cin >> n; while (n--) { cin ...
2019-08-22 14:44:29 96
原创 HDU 2039 三角形
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2039题解:构成三角形的充要条件是两边之和大于第三边注意题目中说的是“数”,因此不止是整型的AC代码:#include <iostream>using namespace std;int main(){ int m; float a, b, c; cin &...
2019-08-22 11:24:54 99
原创 HDU 2021 发工资咯:)
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2021题解:本题主要是贪心算法,从面值最大的查找AC代码:#include <iostream>using namespace std;int money[] = {100, 50, 10, 5, 2, 1};int fun(int x){ int resul...
2019-08-17 16:00:11 127
原创 HDU 2014 青年歌手大奖赛_评委会打分
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2014题解:水题,先排序再计算,注意输出格式AC代码:#include <cstdio>#include <iostream>#include <algorithm>using namespace std;int main(){ int...
2019-08-14 18:05:29 106
原创 HDU 2013 蟠桃记
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2013题解:本题主要找到计算的规律即可AC代码:#include <iostream>using namespace std;int main(){ int n; while (cin >> n) { int sum = 1; for(int...
2019-08-14 17:56:06 119
原创 HDU 2009 求数列的和
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2009题解:水题,注意输出格式即可AC代码:#include <cstdio>#include <cmath>#include <iostream>using namespace std;int main(){ int m; floa...
2019-08-11 12:51:32 106
原创 HDU 2006 求奇数的乘积
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2006题解:水题,判断是基数累乘即可AC代码:#include <cstdio>#include <cmath>#include <iostream>using namespace std;int main(){ int n, tem...
2019-08-07 22:04:45 100
原创 HDU 2002 计算球体积
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2002题解:水题,注意结果保留3位小数即可AC代码:#include <cstdio>#include <cmath>#include <iostream>using namespace std;#define PI 3.1415927...
2019-08-07 21:45:55 121
原创 HDU 2001 计算两点间的距离
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2001题解:水题,主要是两点间距离公式的应用。还要注意保留两位小数AC代码:#include <cstdio>#include <cmath>#include <iostream>using namespace std;int main(...
2019-08-07 19:14:35 109
原创 PID343 / mty的考验
题目链接:http://www.rqnoj.cn/problem/343题解:并查集的应用,将祖先相同的统计到一起,最终求出最大的即可AC代码:#include <cstring>#include <iostream>#include <algorithm>using namespace std;const int MAXN =50...
2019-05-21 17:22:24 280
原创 HDU 2004 成绩转换
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2004题解:用字符串保存答案,访问相应的下标即可AC代码:#include<iostream>using namespace std;string str = "EEEEEEDCBAA";int main() { int t; while (cin >...
2019-05-21 17:00:11 111
原创 PID331 / 家族
题目链接:http://www.rqnoj.cn/problem/331题解:简单的并查集应用AC代码:#include <cstring>#include <iostream>#include <algorithm>using namespace std;const int MAXN =5000 + 5;int pre[MAXN...
2019-05-21 11:58:18 230
原创 HDU 1879 继续畅通工程
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1879题解:本题是典型的最小生成树,用到并查集知识,所以使用并查集实现的克鲁斯卡尔算法先将修好的路进行连通,在计算价格时自动忽略已经建好路的价格本题做的时候,一直超时,原因在于用 cin 读入数据时,耗时太大,导致不能AC,最后改为用 scanf 快多了AC代码:#inclu...
2019-05-21 11:42:44 205
原创 HDU 1233 还是畅通工程
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1233题解:利用贪心思想,先将每一条路的权值排序,优先连接权值短的路。然后在处理路的连接问题上用并查集可以轻松实现。主要步骤:枚举每一条可以连接的路然后再判断其祖宗节点是否相同,如果不同则进行两路的连线,并累计权值和直至所有的路的祖宗节点都相等,则累计成功。另外注意:数据范围问题,...
2019-05-20 23:54:22 199
原创 HDU 1232 畅通工程
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1232题解:本题属于并查集,详细了解并查集,请查看以下链接 并查集详解:https://blog.csdn.net/gzu_zb/article/details/90312628AC代码:#include <cstring>#include...
2019-05-20 17:08:53 201
原创 HDU 2010 水仙花数
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2010题解:先求出一个三位数的每一位再进行判断即可,也可以先把100到999内的所有水仙花数求出来,进行范围的输出。AC代码:#include <cstring>#include <iostream>using namespace std;bool I...
2019-05-19 21:50:15 327
原创 HDU 2019 数列有序!
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2019题解:将全部数放入数组中,排序即可。注意输出格式AC代码:#include <iostream>#include <algorithm>using namespace std;const int MAXN = 100 + 5;int A[MAX...
2019-05-18 21:13:18 225
原创 HDU 2012 素数判定
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2012题解:注意素数的判定方法即可AC代码:#include <cmath>#include <iostream>using namespace std;bool IsPrime(int n) { if(n < 2) return false...
2019-05-18 19:02:46 358
原创 HDU 2011 多项式求和
题目连接:http://acm.hdu.edu.cn/showproblem.php?pid=2011题解:注意格式:1.0 / i AC代码:#include <stdio.h>#include <iostream>using namespace std;int main() { int n, temp; cin >> n;...
2019-05-18 18:47:34 193
原创 HDU 2008 数值统计
题目连接:http://acm.hdu.edu.cn/showproblem.php?pid=2008题解:定义时注意其中有小数AC代码:#include <iostream>using namespace std;int main() { int n; float temp; while (cin >> n && n) {...
2019-05-18 18:44:02 241
原创 HDU 2007 平方和与立方和
题目连接:http://acm.hdu.edu.cn/showproblem.php?pid=2007题解:注意题目没说输入的两个数,谁大谁小,因此需要先比较,这是本题的坑AC代码:#include <math.h>#include <stdio.h>#include <string>#include <string.h>...
2019-05-18 18:22:36 128
原创 1082 与7无关的数
题目链接:http://www.51nod.com/Challenge/Problem.html#!#problemId=1082&judgeId=751276题解:注意范围,要用long long先将答案标记,直接循环求解肯定超时先进行赛选是否含有7或者是7的倍数如:注意6与7的答案是一眼的,因此有Ans[i] = Ans[i-1];AC代码:#include...
2019-05-18 18:05:29 320
原创 彻底理解并查集(通俗易懂)
题目链接:[添加链接描述](http://acm.hdu.edu.cn/showproblem.php?pid=1232)题解: 并查集是一种树型的数据结构,用于处理一些不相交集合(Disjoint Sets)的合并及查询问题。首先在地图上给你若干个城镇,这些城镇都可以看...
2019-05-18 10:57:27 622
原创 HDU 2025 查找最大元素
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2025题解:先找到最大的元素。在输出时,遍历到最大元素时,只需在其后追加输出(max)即可AC代码:#include <string>#include <iostream>using namespace std;int main() { string...
2019-05-17 23:23:47 174
原创 HDU 2027 统计元音
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2027题解:注意读取一行字符串的方法,注意输出格式的控制AC代码:#include <string>#include <iostream>using namespace std;int main() { int n, flag; string st...
2019-05-17 21:59:49 153
原创 HDU 2017 字符串统计
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2017题解:一个循环,判断每个字符是否在数字的范围内即可。AC代码:#include <string>#include <iostream>using namespace std;int main() { int n; string str; w...
2019-05-17 20:58:39 223
原创 HDU 2096 小明A+B
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2096题解:必须先取模,再相加,防止溢出AC代码:#include <iostream>using namespace std;const int MOD = 100;int main() { int n, m, N; cin >> N; wh...
2019-05-17 20:50:34 151
原创 HDU 2099 整除的尾数
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2099题解:先求出最小能被整除的数,只需在100之内遍历即可,最后注意输出不足两位的需要补0AC代码:#include <cstdio>#include <iostream>#include <algorithm>using namespac...
2019-05-17 20:30:12 177
原创 HDU 2098 分拆素数和
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2098题解:写一个判断素数的代码,每次调用即可.注意循环是两个不同的素数和,如26不能拆分为13和13AC代码:#include <cmath>#include <iostream>#include <algorithm>using name...
2019-05-17 15:57:24 154
原创 POJ1995
题目链接:http://poj.org/problem?id=1995题解:本题采用常规的循环,由于数据范围与时间限制,不能AC,因此采用快速幂解决AC代码:#include <iostream>#include <algorithm>using namespace std;typedef long long ll;ll mod_pow...
2019-05-15 15:59:45 642
原创 HDU 2035 人见人爱A^B
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2035题解:本题可以应用快速幂求解,时间复杂度 O(log n),而用普通循环求解,复杂度 O(n)代码一:快速幂求解代码二:普通方法求解,每次只需用后三位去计算即可,因此每次循环的=得到的结果对1000取模,即得到后三位快速幂介绍: 首先,快速幂的目的就是做到快速求幂,...
2019-05-15 09:18:32 204
java实现汉字转拼音.zip
2020-06-21
(全)校园网络规划设计方案.doc
2019-07-23
ASP.NET后台界面通用模板.rar
2019-06-06
dash-to-dock-gnome-3.30.zip
2019-06-01
Gnome-OSC-HS--2-themes.zip
2019-06-01
VS实现MFC的点对点聊天室
2019-04-24
Application+Session实现聊天室功能C#实现
2019-04-19
RSA文件加解密(C#源代码)
2018-12-21
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人