1、实验目的与要求 (1) 掌握Vetor、Stack、Hashtable三个类的用途及常用API; (2) 了解java集合框架体系组成; (3) 掌握ArrayList、LinkList两个类的用途及常用API。 (4) 了解HashSet类、TreeSet类的用途及常用API。 (5)了解Ha ...
分类:
编程语言 时间:
2018-11-11 15:01:02
阅读次数:
140
1.OpenCV-3.2.0+OpenCV_contrib-3.2.0编译安装过程 1)下载官方要求的依赖包 GCC 4.4.x or later CMake 2.6 or higher Git GTK+2.x or higher, including headers (libgtk2.0-dev) ...
分类:
系统相关 时间:
2018-11-03 13:58:05
阅读次数:
305
写在前面 这段时间一直在研究如何提高流表空间的利用率。一直没能想到好的idea。有一篇文献中比较了现有研究中提到的手段,在这里记录一下都有哪些类型的手段以及这些手段存在的不足。这些手段不仅局限于 如何提高流表空间的利用率 ,更把范围拓展至 如何提高交换机流表的匹配成功率 。 背景 软件定义网络(So ...
分类:
其他好文 时间:
2018-10-27 00:19:39
阅读次数:
248
题目描述 我们可以用2*1的小矩形横着或者竖着去覆盖更大的矩形。请问用n个2*1的小矩形无重叠地覆盖一个2*n的大矩形,总共有多少种方法? 思路 递归或者递推,找规律。 代码 public class Solution { public int RectCover(int target) { whi ...
分类:
其他好文 时间:
2018-10-26 13:11:31
阅读次数:
178
知识点描述: 1、ListBox控件的Items中可以手动添加数据集合项。 2、ListBox控件可以绑定数据库后输出数据库中的数据项 3、TextBox是文本框控件,在其中可输入数据,也可以绑定数据库后用来显示数据库中的数据 4、RadioButtion控件可用来提供由两个或多个互斥选项组成的选项 ...
分类:
数据库 时间:
2018-10-24 22:17:29
阅读次数:
291
快慢指针简述 快慢指针经常用于链表(linked list)中环(Cycle)相关的问题。 1. 快指针(fast pointer)和慢指针(slow pointer)都从链表的head出发。 1. slow pointer每次移动一格,而快指针每次移动两格。 1. 如果快慢指针能相遇,则证明链表中 ...
分类:
编程语言 时间:
2018-10-23 14:39:59
阅读次数:
209
Given a word, you need to judge whether the usage of capitals in it is right or not. We define the usage of capitals in a word to be right when one of ...
第五章 主要学习OOP另一个部分 继承,继承使程序员可以使用现有的类,并根据需要进行修改。这是Java程序设计中的一个基础设计。 1.类、超类和子类; (1) 已有类称为:超类(superclass)、基类(base class) 或父类(parent class) 新类称作:子类(subclass ...
分类:
编程语言 时间:
2018-10-07 15:35:13
阅读次数:
172
create-react-app version 2.0 added a lot of new features. One of the new features is added the svgr webpack loader to wrap SVGs in React components as ...
分类:
移动开发 时间:
2018-10-05 10:50:58
阅读次数:
213
unit Unit1; interface uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, V... ...
分类:
Windows程序 时间:
2018-09-30 20:41:50
阅读次数:
1093