码迷,mamicode.com
首页 >  
搜索关键字:contains    ( 4472个结果
集合、迭代器
集合: 集合是java中提供的一种容器,可以用来存储多个数据。 数组的长度是固定的。集合的长度是可变的。集合中存储的元素必须是引用类型数据 Collection接口常用的子接口有:List接口、Set接口 List接口常用的子类有:ArrayList类、LinkedList类 Set接口常用的子类有 ...
分类:其他好文   时间:2019-05-31 21:07:03    阅读次数:98
10-217. Contains Duplicate
题目描述: Given an array of integers, find if the array contains any duplicates. Your function should return true if any value appears at least twice in t ...
分类:其他好文   时间:2019-05-30 01:26:35    阅读次数:97
PostgreSQL数据库表的内部结构
A page within a table contains three kinds of data described as follows: pd_lsn – This variable stores the LSN of XLOG record written by the last chan ...
分类:数据库   时间:2019-05-28 12:50:56    阅读次数:151
【shuguo】34 新http.conf配置
# # This is the main Apache HTTP server configuration file. It contains the # configuration directives that give the server its instructions. # See fo... ...
分类:Web程序   时间:2019-05-28 11:11:08    阅读次数:118
#C++初学记录(A==B?##高精度)
Problem Description Give you two numbers A and B, if A is equal to B, you should print "YES", or print "NO". Input each test case contains two numbers ...
分类:编程语言   时间:2019-05-27 13:24:21    阅读次数:125
[cf920G][容斥原理+二分]
https://codeforc.es/contest/920/problem/G G. List Of Integers time limit per test 5 seconds memory limit per test 256 megabytes input standard input o ...
分类:其他好文   时间:2019-05-26 16:25:56    阅读次数:107
Java学习 ( 集合框架)
集合框架 概述:数组长度是固定的,当添加的元素超过了数组的长度时需要对数组重新定义,太麻烦,Java内部给我们提供了集合类,能存储任意对象,长度是可以改变的,随元素的增加而增加,随元素的减少而减少。 数组和集合的区别: 数组既可以存储基本数据类型,又可以存储引用数据类型。(基本数据类型存储的是值,引 ...
分类:编程语言   时间:2019-05-26 09:19:59    阅读次数:143
OO第三单元总结
梳理JML语言的理论基础、应用工具链情况 JML是一种行为接口规范语言,可以用于指定Java模块的行为。JML可以让我们对某个JAVA的行为进行规范,而不用真正地陷入到实现的细节中去。 JML的许多构造配合SMT Slover可以对代码进行形式化验证。 通过部署JMLUnitNG/JMLUnit可以 ...
分类:其他好文   时间:2019-05-22 20:56:09    阅读次数:88
k8s安装之eventrouter.yaml
k8s的heapster项目中止以后, 事件收集的项目,就推荐使用https://github.com/heptiolabs/eventrouter项目了 Eventrouter This repository contains a simple event router for the Kuber ...
分类:其他好文   时间:2019-05-22 14:10:34    阅读次数:401
AVLTree
import java.util.ArrayList; public class AVLTree, V> { private class Node{ public K key; public V value; public Node left, right; public int height; p... ...
分类:其他好文   时间:2019-05-21 21:10:09    阅读次数:117
4472条   上一页 1 ... 69 70 71 72 73 ... 448 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!