Given N integers, you are supposed to find the smallest positive integer that is NOT in the given list. Input Specification: Each input file contains ...
分类:
其他好文 时间:
2020-05-02 14:56:53
阅读次数:
58
参考资料:http://codeforces.com/blog/entry/76099 A. Ichihime and Triangle $Description:$ 给你四个整数 $a, b, c, d$, 选择三个数$x, y, z$构成一个三角形,其中$a\leq x\leq b, b\leq ...
分类:
其他好文 时间:
2020-05-02 14:56:22
阅读次数:
125
内容截取自: https://community.sw.siemens.com/s/article/introduction to filters fir versus iir 内容截取自: https://community.sw.siemens.com/s/article/introductio ...
分类:
其他好文 时间:
2020-05-02 14:56:05
阅读次数:
63
输出窗口是什么: 这里说的输出黑色的控制台输出窗口和调式时的输出窗口,如下: 黑色的控制台 调式时的输出窗口 输出窗口作用: 调式的时候一般都是通过【局部变量】窗口来跟踪变量情况,但是有些需要连贯性的调式或者跟踪就需要用到【输出】窗口,尤其是异步、多线程的跟踪调式时非常实用。 黑色控制台: 输出语句 ...
分类:
其他好文 时间:
2020-05-02 14:55:49
阅读次数:
59
前期测试使用免费的网络资源: 推荐使用阿贝云 https://www.abeiyun.com 这里提供了免费的免费虚拟主机、免费云服务器。足以供日常使用和测试。使用还算方便,都需要实名认证,不过可以不备案合法使用,免费的配置有点鸡肋,但是还是足够搭建一些小型网站的,如果要搭建中大型,那推荐氪金了。下 ...
分类:
其他好文 时间:
2020-05-02 14:55:32
阅读次数:
101
switch多选择结构 case switch case 语句判断一个变量与一系列的值是否相同,每个值称为一个分支。 输出结果为,及格。 如果不写break,将出现case穿透。 ~~~ //输出的结果为 良好 及格 ~~~ default ~~~java public class SwitchDe ...
分类:
其他好文 时间:
2020-05-02 14:54:47
阅读次数:
54
简介 ? Redis 是一个开源(BSD许可)的,内存中的数据结构存储系统,它可以用作数据库、缓存和消息中间件。 它支持多种类型的数据结构,如 "字符串(strings)" , "散列(hashes)" , "列表(lists)" , "集合(sets)" , "有序集合(sorted sets)" ...
分类:
其他好文 时间:
2020-05-02 14:54:29
阅读次数:
57
The lowest common ancestor (LCA) of two nodes U and V in a tree is the deepest node that has both U and V as descendants. A binary search tree (BST) i ...
分类:
其他好文 时间:
2020-05-02 14:54:12
阅读次数:
50
一、函数作为参数 highOrderFunc是一个高阶函数,因为它可以接收一个函数作为参数 object PartialFunctionDemo { def main(args: Array[String]): Unit = { val add = (d: Double) => d + 1 val ...
分类:
其他好文 时间:
2020-05-02 14:53:58
阅读次数:
54
https://www.toutiao.com/a6821548183361946120/?app=news_article&is_hit_share_recommend=0&wxshare_count=1&tt_from=weixin&utm_source=weixin&utm_medium=to ...
分类:
其他好文 时间:
2020-05-02 14:53:41
阅读次数:
81
Description: 在世界的某个角落有这样的一个国家,他们的计数全部是采用二进制的。这样的好处就是他们只需要两个阿拉伯数字就OK了! 这个国家对数字是很迷信的。他们很讨厌有两个或两个以上的数字1连在一起,比如000110这个数字就不受人们的欢迎(嘿嘿,就像我们对数字4不是很欢迎一样)。 这里的 ...
分类:
其他好文 时间:
2020-05-02 14:53:29
阅读次数:
71
创建线程有2种方式,继承Thread类 和 实现Runnable接口的方式 public class Main { public static void main(String[] args) { MyThread t = new MyThread(); t.start(); // 启动新线程t1 ...
分类:
编程语言 时间:
2020-05-02 14:53:09
阅读次数:
58
AOP基础之代理设计模式 1. 静态代理模式 静态设计模式解决了软件分层过程中额外的功能代码侵入模块的问题,将额外的功能代码提取到了代理中进行,但是静态代理实现的代理者中存在大量重复代码,并没有解决代码重复问题。在真正开发中,包括spring底层,基本不会使用静态代码。 2. 动态代理 java内置 ...
分类:
编程语言 时间:
2020-05-02 14:52:55
阅读次数:
64
两台服务器,一台国内,一台海外,做了内网互通,现要国内端的数据通过内网转发到海外端来上网的需求 1.安装iptables也可以用firewalld 安装好iptables确认是否启动成功 2.开启系统路由转发功能 vi /etc/sysctl.conf net.ipv4.ip_forward = 1 ...
分类:
其他好文 时间:
2020-05-02 14:52:27
阅读次数:
72
Werewolf(狼人杀) is a game in which the players are partitioned into two parties: the werewolves and the human beings. Suppose that in a game, player #1 ...
分类:
其他好文 时间:
2020-05-02 14:51:55
阅读次数:
49
# coding:utf8 class Node(): def __init__(self, _item): self.item = _item self.left = None self.right = None class Tree(): def __init__(self): self.roo ...
分类:
其他好文 时间:
2020-05-02 14:51:38
阅读次数:
63
一、RDD(弹性分布式数据集) RDD 是 Spark 最核心的数据结构,RDD(Resilient Distributed Dataset)全称为弹性分布式数据集,是 Spark 对数据的核心抽象,也是最关键的抽象,它实质上是一组分布式的 JVM 不可变对象集合,不可变决定了它是只读的,所以 RD ...
分类:
其他好文 时间:
2020-05-02 14:51:21
阅读次数:
56