会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
Jesee's Blog
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
13
14
15
16
17
18
19
20
21
···
27
下一页
2022年2月16日
交换Easy
摘要: code #include<algorithm> #include<iostream> using namespace std; void iswap(int a[],int x,int y){ if(a[x]==a[y]){ return; }else{ swap(a[x],a[y]); } }
阅读全文
posted @ 2022-02-16 10:02 ggexs
阅读(40)
评论(0)
推荐(0)
2022年2月14日
泰勒公式求极限
摘要: 
阅读全文
posted @ 2022-02-14 21:27 ggexs
阅读(34)
评论(0)
推荐(0)
实数相加
摘要: code #include<algorithm> #include<iostream> #include<cstring> using namespace std; int main(){ ios::sync_with_stdio(false); char s1[105],s2[105];//sto
阅读全文
posted @ 2022-02-14 10:15 ggexs
阅读(45)
评论(0)
推荐(0)
2022年2月13日
常用等价无穷小
摘要:  
阅读全文
posted @ 2022-02-13 17:40 ggexs
阅读(42)
评论(0)
推荐(0)
统计单词数
摘要: code #include<cstring> #include<iostream> #include<vector> #include<sstream> #include<algorithm> #include<iomanip> using namespace std; struct Node{ s
阅读全文
posted @ 2022-02-13 16:15 ggexs
阅读(72)
评论(0)
推荐(0)
0x3f
摘要: 0x3f
阅读全文
posted @ 2022-02-13 09:37 ggexs
阅读(41)
评论(0)
推荐(0)
2022年2月11日
最小乘积(提高型)
摘要: code #include<iostream> #include<algorithm> using namespace std; const int N=1000+10; bool cmp(int x,int y){ return x>y; } int f1[N],f2[N]; int main()
阅读全文
posted @ 2022-02-11 15:43 ggexs
阅读(52)
评论(0)
推荐(0)
计算时间
摘要: code #include<cstdio> #include<algorithm> #include<iostream> using namespace std; void tran(int t){ if(t==0){ //TODO cout<<"00:00:00\n"; return; } int
阅读全文
posted @ 2022-02-11 15:17 ggexs
阅读(66)
评论(0)
推荐(0)
2022年2月10日
Torry的困惑(提高型)
摘要: code #include<iostream> using namespace std; typedef long long LL; const int N=1500000,M=100010; int vis[N],prime[M]; LL f[M]; int main(){ ios::sync_w
阅读全文
posted @ 2022-02-10 14:29 ggexs
阅读(47)
评论(0)
推荐(0)
递归倒置字符数组
摘要: code #include<iostream> #include<algorithm> using namespace std; int len; string s; void recursion(int l,int r){ if(l==r||l>(len-1)/2){//single charac
阅读全文
posted @ 2022-02-10 13:23 ggexs
阅读(62)
评论(0)
推荐(0)
上一页
1
···
13
14
15
16
17
18
19
20
21
···
27
下一页
公告