最新 最热

2019.8.15乘兴打Codeforces Round #569 (Div. 2)小记A题A. Alex and a Rhombus

A. Alex and a Rhombus time limit per test1 second memory limit per test256 megabytes inputstandard input outputstandard output While playing with geometric...

2020-09-28
0

Codeforces Round #547 (Div. 3)G. Privatization of Roads in Treeland

Treeland consists of n cities and n−1 roads. Each road is bidirectional and connects two distinct cities. From any city you can get to any other city by roads. ...

2020-09-28
1

Codeforces Round #547 (Div. 3)E. Superhero Battle

A superhero fights with a monster. The battle consists of rounds, each of which lasts exactly nn minutes. After a round ends, the next round starts immediately....

2020-09-28
0

MySQL数据库——数据库CRUD之基本DML增删改表操作及DQL查表操作

select                 字段列表            from                 表名列表            where                 条件列表            group by               ...

2020-09-25
0

MongoDB数据分页与排序

首先:count()总数 第一页:db.books.find().limit(3); 第二页:db.books.find().limit(3).skip(3);

2020-09-23
0

MySQL常见关键字优先级

1. 找到表fromjoin on2. 确定过滤条件whereand/or3. 分组&过滤group byhaving(将分组的结果进行having过滤)4. 执行selectselect(确定操作方式)5. 去重distinct5. 确定展示顺序order by 将结果按照条件排序:or......

2020-09-22
1

k8s——资源限制

注:以下只是在yaml文件中进行资源限制的一个片段,并不是完整的yaml文件1、针对Pod的资源限制// cgroup-pod.yaml spec: containers: - name: xxx image: xxx ports: - protocol: TCP co......

2020-09-15
0

c语言之——整型的隐式转换与溢出检测

我们利用整型的最大值减去其中一个数,然后与另一个数进行比较。其中INT_MAX定义在limit.h头文件中,它表示整数的最大值。 当然,我们还可以通过下面的方式来检测:...

2020-09-08
0

Maxima 的基本微积分操作

Maxima 对各种微积分的运算提供了强有力的支持。 可以这么说,在基本微积分运算能力上,Maxima 不输给任何商业软件。

2020-09-07
1

面试题-分表+分页+OrderBy如何实现

"分表后分页",在之前的文章里提过这个点,但是不够详细,最近笔者在工作也遇到了类似的问题,详细的说下这个过程如何实现。

2020-09-07
0