会员
周边
新闻
博问
闪存
赞助商
YouClaw
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
Selma003
博客园
首页
新随笔
联系
管理
订阅
11 2021 档案
第四届“传智杯”全国大学生IT技能大赛(练习赛)java/c++AC代码与个人理解
摘要:比赛链接https://www.luogu.com.cn/contest/56279 代码是看了直播讲解之后写(cv)出来的~ A题: 听了直播讲解后……我才明白这题是纯纯暴力啊,我还以为要用string判断再转回int啥啥啥的…… 这份代码是C++的 #include <bits/stdc++.h
阅读全文
posted @
2021-11-20 22:34
Selma003
阅读(799)
评论(0)
推荐(0)
JAVAAPI笔记【一】——lang包中的String类(更新中)
摘要:At first: lang包是最基础的包,所以lang包下直接的类是不需要导入的,但是lang包下的子包依然是需要导入的。 如果硬是要导入的话, 导入lang包下直接的类这样写:import java.lang.* 导入lang包子包下的类这样写:import java.lang.reflect.
阅读全文
posted @
2021-11-15 20:59
Selma003
阅读(48)
评论(0)
推荐(0)
【排序】【C++】快速排序模板
摘要:无注释的: #include <bits/stdc++.h> using namespace std; const int N = 100005; int a[N]; void quickSort(int q[], int l, int r){ if(l >= r){ return; } int i
阅读全文
posted @
2021-11-11 20:50
Selma003
阅读(160)
评论(0)
推荐(0)
公告