最新 最热

适配器模式 Adapter Pattern - Java实现

将一个类的接口变换成客户端锁期待的另一种接口,从而使原本因接口不匹配而无法工作在一起的两个类能够在一起工作。也叫作变压器模式,亦称包装模式,但包装模式不止一个。简单而言,适配器模式就是把一个接口或类转换成其他...

2021-02-01
0

hdoj 1711 KMP Number Sequence

Given two sequences of numbers : a[1], a[2], ...... , a[N], and b[1], b[2], ...... , b[M] (1 <= M <= 10000, 1 <= N <= 1000000). Your task is to find a number ...

2021-01-22
1

codeforces 317 A Perfect Pair

Let us call a pair of integer numbers m-perfect, if at least one number in the pair is greater than or equal to m. Thus, the pairs (3, 3) and (0, 2) are 2-p...

2021-01-22
1

SQLserver数据库之存储过程、游标等操作(3)

1.赋值--简单赋值declare @a intset @a=5print @a--使用select语句赋值declare @b nvarchar(50)select @b='张三'print @bdeclare @b1 nvarchar(50)select @b1=EmpName from s...

2021-01-21
1

HDOJ/HDU 2564 词组缩写(单词缩写)

Problem Description 定义:一个词组中每个单词的首字母的大写组合称为该词组的缩写。 比如,C语言里常用的EOF就是end of file的缩写。

2021-01-21
1

HDOJ/HDU 1297 Children’s Queue(推导~大数)

Problem Description There are many students in PHT School. One day, the headmaster whose name is PigHeader wanted all students stand in a line. He prescribed ...

2021-01-21
1

HDOJ/HDU 2710 Max Factor(素数快速筛选~)

Problem Description To improve the organization of his farm, Farmer John labels each of his N (1 <= N <= 5,000) cows with a distinct serial number in the rang...

2021-01-21
1

HDOJ/HDU 2568 前进(简单题)

Problem Description 轻松通过墓碑,进入古墓后,才发现里面别有洞天。 突然,Yifenfei发现自己周围是黑压压的一群蝙蝠,个个扇动翅膀正准备一起向他发起进攻! 形势十分危急! 好在此时的yifenfei已经不是以前那个经常被lem...

2021-01-21
1

HDOJ/HDU 2566 统计硬币(公式~遍历~)

Problem Description 假设一堆由1分、2分、5分组成的n个硬币总面值为m分,求一共有多少种可能的组合方式(某种面值的硬币可以数量可以为0)。

2021-01-21
1

HDOJ/HDU 2561 第二小整数(水题~排序~)

Problem Description 求n个整数中倒数第二小的数。 每一个整数都独立看成一个数,比如,有三个数分别是1,1,3,那么,第二小的数就是1。

2021-01-21
1