最新 最热

Android设计模式之Builder模式解析

在日常开发过程中时常需要用到设计模式,但是设计模式有23种,如何将这些设计模式了然于胸并且能在实际开发过程中应用得得心应手呢?和我一起跟着《Android源码设计模式解析与实战》一书边学边应用吧!...

2020-10-26
1

解决 git log 乱码

设置git编码git config --global core.quotepath false git config --global gui.encoding utf-8git config --global i18n.commit.encoding utf-8 git config --global i18...

2020-10-23
1

codeforces 1426D(思维)

来储存每一步已经存在过的前缀和。如果在某个时刻,发现该前缀和已经出现过或已经为0,则说明需要插入一个足够大的数,也就意味着左边区间内的所有数被擦除,我们可以将set置空,重新开始统计。...

2020-10-23
0

codeforces 1374E1(贪心+优先队列)

Easy and hard versions are actually different problems, so read statements of both problems completely and carefully.

2020-10-23
2

codeforces 1144D(思维)

You are given an array a consisting of n integers. You can perform the following operations arbitrary number of times (possibly, zero):

2020-10-23
1

codeforces 1353D(优先队列)

You are given an array a of length n consisting of zeros. You perform n actions with this array: during the i-th action, the following sequence of operations ap...

2020-10-23
1

HDU1213 (并查集)

Today is Ignatius’ birthday. He invites a lot of friends. Now it’s dinner time. Ignatius wants to know how many tables he needs at least. You have to notice tha...

2020-10-23
1

php基础教程 第十一步 面向对象

面向对象程序设计简称OOP(Object-oriented programming)。是一种类型的抽象,或者说是一种类型以编码的方式进行描述。概念上理解并不能直观的说明问题,以下将会有示例为读者直观的感受面向对象。...

2020-10-23
1

第89场周赛

题解:根据描述,第一想法是通过模拟,每经历一段时间,更新每辆车的位置,再判断各辆车的位置,对每辆车的速度进行更新,不太好些代码。

2020-10-23
1

MyBatis------->动态sql(where、set、if、delete)标签

在if判断中,如果为null,无法判断是否是数据库本身默认的null,使用包装类避免这种错误

2020-10-23
0