郭乾亮
郭乾亮
全部文章
分类
ACM-大数/高精度(5)
ACM-搜索(1)
ACM-数学(1)
java面向对象(20)
【Arrays工具类】(1)
【c/c++/stl库】(7)
【HTML5/CSS3】(16)
【java面向对象】(21)
【MySQL】(8)
【成功是慢慢来的】(1)
【数据结构与算法】(16)
【杂】(11)
【算法竞赛】(9)
未归档(96)
题解(1)
归档
标签
去牛客网
登录
/
注册
郭乾亮的博客
全部文章
(共214篇)
STL list相关操作与函数
#include<iostream> #include<stdio.h> #include<list> #include<algorithm> using namespace std; struct node { int a; char c; ...
2019-03-02
0
596
关于修改CSDN中的字体颜色、尺寸(MarkDown条件下)
Size:规定文本的尺寸大小。可能的值:从 1 到 7 的数字。浏览器默认值是 3。 下面这些代码放在文字前面,你的文字就会变颜色了。hahaha… 个人经常使用: orange橙色 ; <font color=#FA8072 size=6> 樱粉金 <font colo...
2019-02-28
0
427
最大公约数和最小公倍数
一、求最大公因数的三种方法: 最大公因数定义: (最大公约数、最大公因子):指两个或多个整数共有约数中最大的一个。 最小公倍数定义: 两个或多个整数公有的倍数叫做它们的公倍数,其中除0以外最小的一个公倍数就叫做这几个整数的最小公倍数。 ①辗转相除法(欧几里得算法): 用较大数除以较小数,再用...
2019-02-28
0
3195
STL vector相关操作与函数
#include<iostream> #include<stdio.h> #include<vector> #include<algorithm> #include<functional> #include<ctime> us...
vector
stl
2019-02-27
0
523
STL string迭代器及两个常用算法
string迭代器相关函数代码: #include<iostream> #include<stdio.h> #include<algorithm> #include<string> #include<functional> using ...
2019-02-27
0
370
STL string操作
string基本操作代码: #include<iostream> #include<stdio.h> #include<string> using namespace std; void Constructor_string()//string构造 { ...
string
stl
2019-02-27
0
360
二分法求多项式单根
代码: #include<iostream> #include<math.h> #include<iomanip> using namespace std; double a,b,c,d; double f(double p){ return a*pow(...
2019-01-23
0
366
贪心算法(greedy)
一、 解题代码: #include<bits/stdc++.h> using namespace std; int main(){ int n,a[10000],i; long long sum=0; scanf("%d",&...
2019-01-22
0
457
模拟算法(simulation)
一、倒序模拟 解题代码: #include<iostream> #include<math.h> using namespace std; int main() { int t,i=0; long long m; cin>>t>>m; ...
2019-01-22
0
527
折半查找算法(bin_search)
给一个严格递增数列,函数int Search_Bin(SSTable T, KeyType k)用来二分地查找k在数列中的位置。 函数接口定义: int Search_Bin(SSTable T, KeyType k) 其中T是有序表,k是查找的值。 裁判测试程序样例: #include &...
2019-01-20
0
561
首页
上一页
13
14
15
16
17
18
19
20
21
22
下一页
末页