码迷,mamicode.com
首页 >  
搜索关键字:two pointer    ( 13796个结果
SSL on Open vSwitch and ovs controller
There are two places that SSL will need to be configured if SSL is to be used between the controller and the Open vSwtich. The instructions below assu...
分类:其他好文   时间:2014-06-15 21:59:43    阅读次数:337
[leetcode]Merge Two Sorted Lists @ Python
原题地址:https://oj.leetcode.com/problems/merge-two-sorted-lists/题意:Merge two sorted linked lists and return it as a new list. The new list should be made...
分类:编程语言   时间:2014-06-15 21:58:31    阅读次数:238
[LeetCode]Swap Nodes in Pairs
Description:Given a linked list, swap every two adjacent nodes and return its head.For example,Given1->2->3->4, you should return the list as2->1->4->...
分类:其他好文   时间:2014-06-15 07:35:31    阅读次数:151
An Introduction to Mutual SSL Authentication
1. Introduction Mutual SSL authentication or certificate based mutual authentication refers to two parties authenticating each other through verifying...
分类:其他好文   时间:2014-06-15 06:41:10    阅读次数:351
clustered and nonclustered indexes
SQL Server has two basics kinds of indexes. They are clustered and nonclustered indexes. There are some fundamental differences to the two which are k...
分类:其他好文   时间:2014-06-15 06:30:52    阅读次数:197
leetcode - Same Tree
题目:Same TreeGiven two binary trees, write a function to check if they are equal or not.Two binary trees are considered equal if they are structurally ...
分类:其他好文   时间:2014-06-15 00:53:09    阅读次数:314
[leetcode]Add Two Numbers @ Python
原题地址:https://oj.leetcode.com/problems/add-two-numbers/题意:You are given two linked lists representing two non-negative numbers. The digits are stored i...
分类:编程语言   时间:2014-06-15 00:40:44    阅读次数:328
oracle 11g ocr 冗余配置
在11g 安装过程中默认只能指定一个 dg 用来存储:crs ,voting 但是oracle 官方一般建议我们这么来配置: ■  1、当ocr没有配置镜像,或者冗余存储时 最少3个ocr 。 如果底层存储不是RAID的话,oracle建议镜像OCR,镜像可以避免单点故障。 ■ At least two OCR locations if OCR is configured on...
分类:数据库   时间:2014-06-14 12:29:52    阅读次数:447
[Swift] 数组恒等 === 的 bug?!
数组的恒等 === 在文档中是这么说的: Check whether two arrays or subarrays share the same storage and elements by comparing them with the identity operators (=== and !==). 数组的恒等 === 判断即判断两个数组所指向的元素存储区是否相同。 但 XCode 6 测试下来,结果大为迥异:var a = [1, 2, 3]; a === a 其结果却为 false,...
分类:其他好文   时间:2014-06-14 11:39:39    阅读次数:280
Lucene40SkipListWriter
多级跳跃表是保存在tim文件中的。 tip是term index,tim是term dictionary。记忆方法是,p是pointer因此是term index。 这个类会保存多个level的last变量和cur变量,同时使用RAMOutputStream数组缓存不同级别跳跃表的内容,一个term的所有doc添加完后才写入tim文件。几个主要方法: resetSkip:几个last变量重置...
分类:其他好文   时间:2014-06-14 06:36:07    阅读次数:386
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!